Represents the brand information.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "BrandInfo", "description": "Represents the brand information.", "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-brand-info-schema.json", "type": "object", "properties": { "id": { "type": "string", "description": "Css brand id.", "example": "store_123" }, "name": { "type": "string", "description": "Css brand name.", "example": "Main Street Cafe" }, "createdAt": { "type": "string", "format": "date-time", "description": "The date and time when the brand was created.", "example": "2023-01-15T10:00:00Z" } }, "required": [ "id", "name", "createdAt" ] }