{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/MessageComponentStringSelectResponse", "title": "MessageComponentStringSelectResponse", "type": "object", "properties": { "type": { "type": "integer", "enum": [ 3 ], "allOf": [ { "$ref": "#/components/schemas/MessageComponentTypes" } ], "format": "int32" }, "id": { "$ref": "#/components/schemas/SnowflakeType" }, "custom_id": { "type": "string" }, "placeholder": { "type": [ "string", "null" ] }, "min_values": { "type": [ "integer", "null" ], "format": "int32" }, "max_values": { "type": [ "integer", "null" ], "format": "int32" }, "disabled": { "type": [ "boolean", "null" ] }, "options": { "type": [ "array", "null" ], "items": { "oneOf": [ { "type": "null" }, { "$ref": "#/components/schemas/SelectOptionResponse" } ] } } }, "required": [ "type", "id", "custom_id" ] }