Treatment tracks represent bundles of measures designed to be used for a specific type of intervention
Column | Name | Format | Nullable | Description | Notes |
id | ID | uuid | false | The mirah internal identifier of the track | |
name | Name | string | false | The visible name of the track | |
status | Status | Active | inactive | false | Is this track active | |
createdAt | Created At | datetime | false | When this was created | |
updatedAt | Updated At | datetime | false | When this track was last updated |
Care Episode Treatment Track
Links care episodes to treatment tracks, representing enrollment in a particular track for measurement and tracking purposes. Includes session number offsets and enrollment dates.
column :careEpisodeId, name: 'Care Episode Id', format: 'identifier', cardinality: '1..1'
column :treatmentTrackId, name: 'Treatment Track Id', format: 'identifier', cardinality: '1..1'
column :enrollmentDate, name: 'Enrollment Date', format: 'dateTime', cardinality: '1..1'
column :startSessionNumber, name: 'Start Session Number', format: 'integer', cardinality: '1..1',
notes: 'Highest session number before enrollment (offset)'
column :endSessionNumber, name: 'End Session Number', format: 'integer', cardinality: '0..1',
notes: 'Highest session number when track was active'
column :completionDate, name: 'Completion Date', format: 'dateTime', cardinality: '0..1'
column :status, name: 'Status', format: 'enum', cardinality: '1..1',
notes: 'active | complete | entered_in_error'
column :createdAt, name: 'Created At', format: 'dateTime', cardinality: '1..1'
column :updatedAt, name: 'Updated At', format: 'dateTime', cardinality: '1..1'
Column | Name | Format | Nullable | Description | Notes |
id | ID | uuid | false | The mirah internal identifier of the track | |
careEpisodeId | Care Episode Id | uuid | false | The id of the care episode | |
treatmentTrackId | Treatment Track Id | uuid | false | The id of the treatment track | |
enrollmentDate | Enrollment Date | datetime | false | When this track was started | |
completionDate | Completion Date | datetime | true | When this track was ended | |
startSessionNumber | Start Session Number | integer | false | The first session number for which the track is active | |
endSessionNumber | End Session Number | integer | true | The final session number for which the track was active | |
status | Status | Active | complete| entered_in_error | false | The status of the track | |
createdAt | Created At | datetime | false | When this was created | |
updatedAt | Updated At | datetime | false | When this track was last updated |