##clinical:hl7-resource-slot
HL7 FHIR Resource - Slot
===============================
Conformance Statement
The resource in this package implements the FHIR Patient Resource schema provided at https://www.hl7.org/fhir/slot.html.
===============================
Installation
# to add hl7 resource schemas and rest routes meteor add clinical:hl7-resource-slot # to initialize default data INITIALIZE=true meteor
===============================
Example
1var requestedSlot = {} 2Slots.insert(requestedSlot);
===============================
Extending the Schema
1ExtendedSlotSchema = new SimpleSchema([ 2 SlotSchema, 3 { 4 "createdAt": { 5 "type": Date, 6 "optional": true 7 } 8 } 9]); 10Slots.attachSchema( ExtendedSlotSchema );
===============================
Utilities
If you're working with HL7 FHIR Resources, we recommend using Postman.
===============================