Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/clinical-meteor/hl7-fhir-resources
HL7 FHIR Resources
https://github.com/clinical-meteor/hl7-fhir-resources
Last synced: about 1 month ago
JSON representation
HL7 FHIR Resources
- Host: GitHub
- URL: https://github.com/clinical-meteor/hl7-fhir-resources
- Owner: clinical-meteor
- Created: 2016-12-02T03:33:31.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2016-12-02T07:33:03.000Z (about 8 years ago)
- Last Synced: 2024-10-29T16:57:11.316Z (2 months ago)
- Language: JavaScript
- Size: 38.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
##clinical:hl7-resource-allergy-intolerance
HL7 FHIR Resource - AllergyIntolerance
===============================
#### Conformance StatementThe resource in this package implements the FHIR Patient Resource schema provided at [https://www.hl7.org/fhir/allergyintolerance.html](https://www.hl7.org/fhir/allergyintolerance.html).
===============================
#### Installation````bash
# to add hl7 resource schemas and rest routes
meteor add clinical:hl7-resource-allergy-intolerance# to initialize default data
INITIALIZE=true meteor
````===============================
#### Example```js
let peanutAllergy = {}
AllergyIntolerances.insert(peanutAllergy);
```===============================
#### Extending the Schema```js
ExtendedAllergyIntoleranceSchema = new SimpleSchema([
AllergyIntoleranceSchema,
{
"createdAt": {
"type": Date,
"optional": true
}
}
]);
AllergyIntolerances.attachSchema( ExtendedAllergyIntoleranceSchema );
```===============================
#### 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)