{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/StartThreadRequest", "title": "StartThreadRequest", "type": "object", "required": [ "name" ], "properties": { "name": { "type": "string", "minLength": 1, "maxLength": 100 }, "auto_archive_duration": { "type": "integer" }, "type": { "type": "integer" }, "invitable": { "type": "boolean" }, "rate_limit_per_user": { "type": "integer" } } }