drchrono · Schema
TaskTemplate
EHRElectronic Health RecordsHealthcareMedical RecordsPractice ManagementHIPAAAppointmentsBillingPrescriptionsLab IntegrationFHIR
Properties
| Name | Type | Description |
|---|---|---|
| archived | boolean | |
| name | string | |
| practice_group | string | |
| default_category | integer | |
| updated_at | string | |
| default_title | string | |
| default_note | string | |
| default_status | integer | |
| id | integer | |
| default_assignee_group | integer | |
| default_assignee_user | string | |
| default_due_date_offset | string | Offset due date, format should follow `"[DD] [HH:[MM:]]ss[.uuuuuu]"` |
| created_at | string | |
| default_priority | string | Can be one of the following 10(Low), 20(Medium), 30(High), 40(Urgent) |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://api-evangelist.github.io/drchrono/json-schema/tasktemplate.json",
"title": "TaskTemplate",
"required": [
"name"
],
"type": "object",
"properties": {
"archived": {
"type": "boolean",
"description": "",
"title": "Archived"
},
"name": {
"type": "string",
"description": "",
"title": "Name"
},
"practice_group": {
"readOnly": true,
"type": "string",
"description": "",
"title": "Practice group"
},
"default_category": {
"type": "integer",
"description": "",
"title": "Default category"
},
"updated_at": {
"readOnly": true,
"type": "string",
"description": "",
"title": "Updated at"
},
"default_title": {
"type": "string",
"description": "",
"title": "Default title"
},
"default_note": {
"type": "string",
"description": "",
"title": "Default note"
},
"default_status": {
"type": "integer",
"description": "",
"title": "Default status"
},
"id": {
"readOnly": true,
"type": "integer",
"description": "",
"title": "ID"
},
"default_assignee_group": {
"type": "integer",
"description": "",
"title": "Default assignee group"
},
"default_assignee_user": {
"type": "string",
"description": "",
"title": "Default assignee user"
},
"default_due_date_offset": {
"type": "string",
"description": "Offset due date, format should follow `\"[DD] [HH:[MM:]]ss[.uuuuuu]\"`",
"title": "Default due date offset"
},
"created_at": {
"readOnly": true,
"type": "string",
"description": "",
"title": "Created at"
},
"default_priority": {
"enum": [
"10",
"20",
"30",
"40"
],
"type": "string",
"description": "Can be one of the following 10(Low), 20(Medium), 30(High), 40(Urgent)",
"title": "Default priority"
}
},
"x-verbose-required": []
}