fhirbuilder
Version:
Another FHIR Tool to build FHIR Resources
34 lines (33 loc) • 1.53 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.EpisodeOfCareDiagnosisValidator = EpisodeOfCareDiagnosisValidator;
const definitions_1 = require("../base/definitions");
const base_1 = require("../base");
const utils_1 = require("../../../commons/utils");
const models_1 = require("../../../../r4/models");
/**
* @description The model fields for the EpisodeOfCareDiagnosis model
*/
const modelFields = (0, definitions_1.createBackboneDefinition)([
{ name: 'condition', type: 'Reference', isArray: false, isRequired: true, referenceTypes: ['Condition'] },
{ name: 'role', type: 'CodeableConcept', isArray: false, isRequired: false },
{ name: 'rank', type: 'positiveInt', isArray: false, isRequired: false },
{ name: '_rank', type: 'Element', isArray: false, isRequired: false },
]);
/**
* @description Validates the EpisodeOfCareDiagnosis model
* @param dataToValidate - the EpisodeOfCareDiagnosis model to validate
* @param path - the path to the model
* @param errors - the errors array
*/
function EpisodeOfCareDiagnosisValidator(dataToValidate, path = 'EpisodeOfCareDiagnosis', errors = []) {
// Ensure that the model fields match the attributes of the model
(0, utils_1.AssertModelFieldsMatchAttributes)(modelFields, new models_1.EpisodeOfCareDiagnosis());
// Validate the model and add any errors to the errors array
(0, base_1.ModelValidator)({
dataToValidate,
modelDefinition: modelFields,
path,
errors,
});
}