Input for creating or updating a catalog node
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CatalogNodeInput", "title": "CatalogNodeInput", "type": "object", "description": "Input for creating or updating a catalog node", "properties": { "code": { "type": "string", "description": "Unique code for the node" }, "name": { "type": "string", "description": "Display name of the node" }, "parent_node_code": { "type": "string", "description": "Code of the parent node" }, "is_active": { "type": "boolean", "description": "Whether the node is active" }, "sort_order": { "type": "integer", "description": "Sort order for display" } } }