Files
superset2/docs/developer_docs_versioned_docs/version-6.1.0/api/schemas/folder.Schema.json
2026-07-28 21:39:01 +07:00

25 lines
596 B
JSON

{
"schema": {
"properties": {
"children": {
"items": "circular(Folder)",
"nullable": true,
"type": "array"
},
"description": {
"maxLength": 1000,
"minLength": 0,
"nullable": true,
"type": "string"
},
"name": { "maxLength": 250, "minLength": 1, "type": "string" },
"type": { "enum": ["metric", "column", "folder"], "type": "string" },
"uuid": { "format": "uuid", "type": "string" }
},
"required": ["uuid"],
"type": "object",
"title": "Folder"
},
"schemaType": "response"
}