{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/BrandGet", "title": "BrandGet", "type": "object", "description": "Object containing brand information.", "required": [ "id", "name", "isActive", "imageUrl", "title", "metaTagDescription" ], "properties": { "id": { "type": "integer", "description": "Brand's unique numerical identifier." }, "name": { "type": "string", "description": "Brand name." }, "isActive": { "type": "boolean", "description": "Defines if the brand is active (`true`) or not (`false`)." }, "title": { "type": "string", "description": "Meta title for the brand page." }, "metaTagDescription": { "type": "string", "description": "Meta Description for the brand page. A brief description of the brand, displayed by search engines. Since search engines can only display less than 150 characters, we recommend not exceeding this character limit when creating the description." }, "imageUrl": { "type": "string", "description": "URL of the brand's image.", "nullable": true } } }