{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SalesChannel", "title": "SalesChannel", "type": "array", "description": "Array containing information about the Sales channel.", "items": { "type": "object", "description": "Sales channel information.", "required": [ "id" ], "properties": { "id": { "type": "string", "description": "Sales channel identification.", "example": "1" } } } }