{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://api-evangelist.github.io/drchrono/json-schema/taskcategory.json", "title": "TaskCategory", "required": [ "name", "practice_group" ], "type": "object", "properties": { "archived": { "type": "boolean", "description": "", "title": "Archived" }, "is_global": { "readOnly": true, "type": "string", "description": "Indicates that the category is a system wide (pre-defined) category", "title": "Is global" }, "name": { "type": "string", "description": "", "title": "Name" }, "practice_group": { "type": "integer", "description": "", "title": "Practice group" }, "created_at": { "readOnly": true, "type": "string", "description": "", "title": "Created at" }, "updated_at": { "readOnly": true, "type": "string", "description": "", "title": "Updated at" }, "id": { "readOnly": true, "type": "integer", "description": "", "title": "ID" } }, "x-verbose-required": [] }