Sha256: 18e8ce99046f71ad4d0e9bf75427e128281f1112ec540343931953c3410288e8

Contents?: true

Size: 1.04 KB

Versions: 6

Compression:

Stored size: 1.04 KB

Contents

const mongoose = require('mongoose');
const { DataElementSchema } = require('./basetypes/DataElement');
const Code = require('./basetypes/Code');
const Interval = require('./basetypes/Interval');
const Quantity = require('./basetypes/Quantity');
const DateTime = require('./basetypes/DateTime');
const Any = require('./basetypes/Any');

const [Number, String] = [
  mongoose.Schema.Types.Number,
  mongoose.Schema.Types.String,
];

const PatientCharacteristicBirthdateSchema = DataElementSchema({
  birthDatetime: DateTime,
  hqmfOid: { type: String, default: '2.16.840.1.113883.10.20.28.3.54' },
  category: { type: String, default: 'patient_characteristic' },
  qdmStatus: { type: String, default: 'birthdate' },
  qdmVersion: { type: String, default: '5.3' },
  _type: { type: String, default: 'PatientCharacteristicBirthdate' },

});

module.exports.PatientCharacteristicBirthdateSchema = PatientCharacteristicBirthdateSchema;
module.exports.PatientCharacteristicBirthdate = mongoose.model('PatientCharacteristicBirthdate', PatientCharacteristicBirthdateSchema);

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
cqm-models-0.8.0 app/assets/javascripts/PatientCharacteristicBirthdate.js
cqm-models-0.7.7 app/assets/javascripts/PatientCharacteristicBirthdate.js
cqm-models-0.7.6 app/assets/javascripts/PatientCharacteristicBirthdate.js
cqm-models-0.7.5 app/assets/javascripts/PatientCharacteristicBirthdate.js
cqm-models-0.7.4 app/assets/javascripts/PatientCharacteristicBirthdate.js
cqm-models-0.7.3 app/assets/javascripts/PatientCharacteristicBirthdate.js