{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/StatusDetails", "title": "StatusDetails", "additionalProperties": true, "description": "A status.", "properties": { "description": { "description": "The description of the status.", "readOnly": true, "type": "string" }, "iconUrl": { "description": "The URL of the icon used to represent the status.", "readOnly": true, "type": "string" }, "id": { "description": "The ID of the status.", "readOnly": true, "type": "string" }, "name": { "description": "The name of the status.", "readOnly": true, "type": "string" }, "scope": { "allOf": [ { "$ref": "#/components/schemas/Scope" } ], "description": "The scope of the field.", "readOnly": true }, "self": { "description": "The URL of the status.", "readOnly": true, "type": "string" }, "statusCategory": { "allOf": [ { "$ref": "#/components/schemas/StatusCategory" } ], "description": "The category assigned to the status.", "readOnly": true } }, "type": "object" }