{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/customers-channel-schema.json", "title": "Channel", "description": "Channel.", "type": "object", "properties": { "ChannelId": { "format": "int32", "description": "Channel Id", "type": "integer", "example": 500123 }, "TranslationKey": { "description": "Channel TranslationKey", "type": "string", "example": "string" }, "Source": { "description": "Channel Source", "enum": [ "Internal", "External" ], "type": "string", "example": "Internal" }, "LogoUri": { "description": "Channel Logo URl", "type": "string", "example": "https://api.flipdish.co/example" }, "Available": { "description": "Channel is Available or not", "type": "boolean", "example": true }, "MaintainedExternally": { "description": "Channel is Maintained Externally or not", "type": "boolean", "example": true } } }