{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/menus-create-metadata-schema.json", "title": "CreateMetadata", "description": "Create metadata", "type": "object", "properties": { "StoreId": { "format": "int32", "description": "Store identifier", "type": "integer", "example": 500123 }, "Key": { "description": "Metadata key (Unique identifier)", "maxLength": 128, "minLength": 0, "type": "string", "example": "string" }, "Value": { "description": "Metadata value", "maxLength": 4000, "minLength": 0, "type": "string", "example": "string" } } }