{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ProjectCategory", "title": "ProjectCategory", "additionalProperties": false, "description": "A project category.", "properties": { "description": { "description": "The description of the project category.", "type": "string" }, "id": { "description": "The ID of the project category.", "readOnly": true, "type": "string" }, "name": { "description": "The name of the project category. Required on create, optional on update.", "type": "string" }, "self": { "description": "The URL of the project category.", "format": "uri", "readOnly": true, "type": "string" } }, "type": "object" }