{ "$schema": "http://json-schema.org/draft-07/schema", "$id": "https://joystream.org/ChannelReference.schema.json", "title": "ChannelReference", "description": "JSON schema for reference to Channel entity based on runtime schema", "anyOf": [ { "type": "object", "additionalProperties": false, "required": [ "title" ], "properties": { "title": { "type": "string", "maxLength": 64, "description": "The title of the Channel" } } }, { "type": "integer", "minimum": 0 } ] }