Properties
| Name | Type | Description |
|---|---|---|
| id | integer | |
| parent_id | integer | |
| depth | integer | |
| path | array | |
| name | string | |
| is_visible | boolean | |
| children | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CategoryNode",
"title": "CategoryNode",
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"parent_id": {
"type": "integer"
},
"depth": {
"type": "integer"
},
"path": {
"type": "array",
"items": {
"type": "integer"
}
},
"name": {
"type": "string"
},
"is_visible": {
"type": "boolean"
},
"children": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CategoryNode"
}
}
},
"x-tags": [
"Models"
]
}