{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ContentStateRestInput", "title": "ContentStateRestInput", "type": "object", "properties": { "name": { "type": "string", "description": "Name of content state. Maximum 20 characters.", "example": "Example Title" }, "color": { "type": "string", "description": "Color of state. Must be in 6 digit hex form (#FFFFFF). The default colors offered in the UI are:\n #ff7452 (red),\n #2684ff (blue),\n #ffc400 (yellow),\n #57d9a3 (green), and\n #8777d9 (purple)", "example": "example_value" }, "id": { "type": "integer", "description": "id of state. This can be 0,1, or 2 if you wish to specify a default space state.", "format": "int64", "example": "abc123" } } }