{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ContentStateSettings", "title": "ContentStateSettings", "required": [ "contentStatesAllowed", "customContentStatesAllowed", "spaceContentStatesAllowed" ], "type": "object", "properties": { "contentStatesAllowed": { "type": "boolean", "description": "Whether users can place any content states on content", "example": true }, "customContentStatesAllowed": { "type": "boolean", "description": "Whether users can place their custom states on content", "example": true }, "spaceContentStatesAllowed": { "type": "boolean", "description": "Whether users can place space suggested states on content", "example": true }, "spaceContentStates": { "type": "array", "items": { "$ref": "#/components/schemas/ContentState" }, "description": "space suggested content states that users can choose from", "example": [] } } }