clinical:hl7-resource-immunization

v1.2.13Published 5 years ago

This package has not had recent updates. Please investigate it's current state before committing to using it in your project.

clinical:hl7-resource-immunization

Licensing

MIT License

Integration & Verification Tests

CircleCI

API Reference

The resource in this package implements Immunization resource schema, specified at https://www.hl7.org/fhir/DSTU2/immunization.html.

Installation

# to add hl7 resource schemas and rest routes
meteor add clinical:hl7-resource-immunization

# to initialize default data
INITIALIZE=true meteor

Example

1var immunizationStatement = {}
2Immunizations.insert(immunizationStatement);

Extending the Schema

1ExtendedImmunizationSchema = new SimpleSchema([
2  ImmunizationSchema,
3  {
4    "createdAt": {
5      "type": Date,
6      "optional": true
7    }
8  }
9]);
10Immunizations.attachSchema( ExtendedImmunizationSchema );

Utilities

If you're working with HL7 FHIR Resources, we recommend using Postman.