fhir-schemas
Version:
Schemas for Fast Healthcare Interoperability Resources.
22 lines (20 loc) • 368 B
JavaScript
var Code = require('../datatypes/Code');
exports.DomainResourceSchema = new SimpleSchema({
"text.status" : {
type: Code,
optional: true,
defaultValue: 'additional'
},
"text.div" : {
type: String,
optional: true
},
"contained" : {
type: Object,
optional: true
},
"extension" : {
type: [Object],
optional: true
}
});