UNPKG

fhirbuilder

Version:
33 lines (32 loc) 1.47 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.HealthcareServiceEligibilityValidator = HealthcareServiceEligibilityValidator; 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 HealthcareServiceEligibility model */ const modelFields = (0, definitions_1.createBackboneDefinition)([ { name: 'code', type: 'CodeableConcept', isArray: false, isRequired: false }, { name: 'comment', type: 'markdown', isArray: false, isRequired: false }, { name: '_comment', type: 'Element', isArray: false, isRequired: false }, ]); /** * @description Validates the HealthcareServiceEligibility model * @param dataToValidate - the HealthcareServiceEligibility model to validate * @param path - the path to the model * @param errors - the errors array */ function HealthcareServiceEligibilityValidator(dataToValidate, path = 'HealthcareServiceEligibility', errors = []) { // Ensure that the model fields match the attributes of the model (0, utils_1.AssertModelFieldsMatchAttributes)(modelFields, new models_1.HealthcareServiceEligibility()); // Validate the model and add any errors to the errors array (0, base_1.ModelValidator)({ dataToValidate, modelDefinition: modelFields, path, errors, }); }