Files
superset2/docs/developer_docs_versioned_docs/version-6.1.0/api/create-a-new-dataset.RequestSchema.json

59 lines
1.9 KiB
JSON

{
"title": "Body",
"body": {
"content": {
"application/json": {
"schema": {
"properties": {
"always_filter_main_dttm": { "default": false, "type": "boolean" },
"catalog": {
"maxLength": 250,
"minLength": 0,
"nullable": true,
"type": "string"
},
"database": { "type": "integer" },
"external_url": { "nullable": true, "type": "string" },
"is_managed_externally": { "nullable": true, "type": "boolean" },
"normalize_columns": { "default": false, "type": "boolean" },
"owners": { "items": { "type": "integer" }, "type": "array" },
"schema": {
"maxLength": 250,
"minLength": 0,
"nullable": true,
"type": "string"
},
"sql": { "nullable": true, "type": "string" },
"table_name": {
"maxLength": 250,
"minLength": 1,
"type": "string"
},
"template_params": { "nullable": true, "type": "string" },
"uuid": { "format": "uuid", "nullable": true, "type": "string" }
},
"required": ["database", "table_name"],
"type": "object",
"title": "DatasetRestApi.post"
},
"example": {
"always_filter_main_dttm": true,
"catalog": "string",
"database": 1,
"external_url": "string",
"is_managed_externally": true,
"normalize_columns": true,
"owners": [1],
"schema": "string",
"sql": "string",
"table_name": "string",
"template_params": "string",
"uuid": "550e8400-e29b-41d4-a716-446655440000"
}
}
},
"description": "Dataset schema",
"required": true
}
}