fhir-schemas
Version:
Schemas for Fast Healthcare Interoperability Resources.
37 lines (29 loc) • 449 B
JavaScript
exports.CodingSchema = new SimpleSchema({
"system" : {
optional: true,
type: String
},
"code" : {
optional: true,
type: String
},
"version" : {
optional: true,
type: String
},
"display" : {
optional: true,
type: String
},
"userSelected" : {
optional: true,
type: Boolean
}
});
exports.DefaultCoding = {
create: function(){
var newCoding = {
};
return newCoding;
}
}