{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ContentState", "title": "ContentState", "required": [ "id", "name", "color" ], "type": "object", "properties": { "id": { "type": "integer", "description": "identifier of content state. If 0, 1, or 2, this is a default space state", "format": "int64", "example": "abc123" }, "name": { "type": "string", "description": "name of content state.", "example": "Example Title" }, "color": { "type": "string", "description": "hex string representing color of state", "example": "example_value" } } }