Input for creating or updating a catalog
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CatalogInput", "title": "CatalogInput", "type": "object", "description": "Input for creating or updating a catalog", "properties": { "name": { "type": "string", "description": "Name of the catalog" }, "default_currency": { "type": "string", "description": "Default currency code" }, "default_language": { "type": "string", "description": "Default language code" }, "is_active": { "type": "boolean", "description": "Whether the catalog is active" } } }