changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "DFInfo": {
+ "properties": {
+ "general_info": {
+ "title": "General Info",
+ "type": "string"
+ },
+ "sample": {
+ "additionalProperties": true,
+ "title": "Sample",
+ "type": "object"
+ }
+ },
+ "required": [
+ "general_info",
+ "sample"
+ ],
+ "title": "DFInfo",
+ "type": "object"
+ },
+ "DFMetaData": {
+ "properties": {
+ "column_names_types": {
+ "anyOf": [
+ {
+ "additionalProperties": {
+ "type": "string"
+ },
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Column Names Types"
+ },
+ "file_location_type": {
+ "enum": [
+ "local",
+ "remote"
+ ],
+ "title": "File Location Type",
+ "type": "string"
+ },
+ "file_name": {
+ "title": "File Name",
+ "type": "string"
+ },
+ "file_path_or_url": {
+ "title": "File Path Or Url",
+ "type": "string"
+ },
+ "read_function_string": {
+ "enum": [
+ "pd.read_csv",
+ "pd.read_json",
+ "pd.read_html",
+ "pd.read_parquet",
+ "pd.read_excel"
+ ],
+ "title": "Read Function String",
+ "type": "string"
+ }
+ },
+ "required": [
+ "file_name",
+ "file_path_or_url",
+ "file_location_type",
+ "read_function_string"
+ ],
+ "title": "DFMetaData",
+ "type": "object"
+ }
+ },
+ "properties": {
+ "df_info": {
+ "anyOf": [
+ {
+ "$ref": "#/$defs/DFInfo"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "df_metadata": {
+ "anyOf": [
+ {
+ "$ref": "#/$defs/DFMetaData"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "message": {
+ "title": "Message",
+ "type": "string"
+ },
+ "valid": {
+ "title": "Valid",
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "valid",
+ "message",
+ "df_info",
+ "df_metadata"
+ ],
+ "title": "DataAnalysisResults",
+ "type": "object"
+}