addedInput schema / properties / blueprint / properties / channels / items / properties
Added value: +{
+ "name": {
+ "maxLength": 100,
+ "minLength": 1,
+ "type": "string"
+ },
+ "nsfw": {
+ "type": "boolean"
+ },
+ "posting_roles": {
+ "description": "With read_only: role names that may still post.",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "private_to": {
+ "description": "Role names that can see this channel. Everyone else is denied view.",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "read_only": {
+ "description": "Deny sending for everyone; for rules and announcements.",
+ "type": "boolean"
+ },
+ "slowmode_seconds": {
+ "maximum": 21600,
+ "minimum": 0,
+ "type": "integer"
+ },
+ "topic": {
+ "maxLength": 1024,
+ "type": "string"
+ },
+ "type": {
+ "description": "Default text.",
+ "enum": [
+ "text",
+ "voice",
+ "forum",
+ "stage",
+ "announcement"
+ ],
+ "type": "string"
+ }
+}