{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ConfigurablePropDiscord", "title": "ConfigurablePropDiscord", "allOf": [ { "$ref": "#/components/schemas/ConfigurablePropBase" }, { "type": "object", "description": "For Discord components, this prop can accept a Discord channel ID.", "required": [ "type" ], "properties": { "type": { "type": "string", "enum": [ "$.discord.channel" ] } } } ] }