fhir-schemas
Version:
Schemas for Fast Healthcare Interoperability Resources.
25 lines (18 loc) • 309 B
JavaScript
exports.NarrativeSchema = new SimpleSchema({
"status" : {
type: Code,
optional: true,
defaultValue: 'additional'
},
"div" : {
type: String,
optional: true
}
});
exports.DefaultNarrative = {
create: function(){
var newNarrative = {
};
return newNarrative;
}
}