Files
superset2/docs/developer_docs_versioned_docs/version-6.1.0/api/create-an-annotation-layer-annotation-layer.RequestSchema.json
2026-07-28 21:39:01 +07:00

31 lines
769 B
JSON

{
"title": "Body",
"body": {
"content": {
"application/json": {
"schema": {
"properties": {
"descr": {
"description": "Give a description for this annotation layer",
"nullable": true,
"type": "string"
},
"name": {
"description": "The annotation layer name",
"maxLength": 250,
"minLength": 1,
"type": "string"
}
},
"required": ["name"],
"type": "object",
"title": "AnnotationLayerRestApi.post"
},
"example": { "descr": "string", "name": "string" }
}
},
"description": "Annotation Layer schema",
"required": true
}
}