Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/clinical-meteor/hl7-resource-schedule
HL7 FHIR Resource - Schedule
https://github.com/clinical-meteor/hl7-resource-schedule
Last synced: about 2 months ago
JSON representation
HL7 FHIR Resource - Schedule
- Host: GitHub
- URL: https://github.com/clinical-meteor/hl7-resource-schedule
- Owner: clinical-meteor
- Created: 2016-11-16T04:06:39.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2016-12-07T02:33:28.000Z (about 8 years ago)
- Last Synced: 2024-10-29T16:57:50.198Z (3 months ago)
- Language: JavaScript
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
##clinical:hl7-resource-schedule
HL7 FHIR Resource - Schedule
===============================
#### Conformance StatementThe resource in this package implements the FHIR Patient Resource schema provided at [https://www.hl7.org/fhir/schedule.html](https://www.hl7.org/fhir/schedule.html).
===============================
#### Installation````bash
# to add hl7 resource schemas and rest routes
meteor add clinical:hl7-resource-schedule# to initialize default data
INITIALIZE=true meteor
````===============================
#### Example```js
var personalSchedule = {}
Schedules.insert(personalSchedule);
```===============================
#### Extending the Schema```js
ExtendedScheduleSchema = new SimpleSchema([
ScheduleSchema,
{
"createdAt": {
"type": Date,
"optional": true
}
}
]);
Schedules.attachSchema( ExtendedScheduleSchema );
```===============================
#### UtilitiesIf you're working with HL7 FHIR Resources, we recommend using [Postman](https://chrome.google.com/webstore/detail/postman/fhbjgbiflinjbdggehcddcbncdddomop?hl=en).
===============================
#### Licensing![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)