diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/PositiveIntDt.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/PositiveIntDt.java new file mode 100644 index 00000000000..785931e76f9 --- /dev/null +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/PositiveIntDt.java @@ -0,0 +1,57 @@ +package ca.uhn.fhir.model.primitive; + +/* + * #%L + * HAPI FHIR - Core Library + * %% + * Copyright (C) 2014 - 2015 University Health Network + * %% + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * #L% + */ + +import ca.uhn.fhir.model.api.annotation.DatatypeDef; +import ca.uhn.fhir.model.api.annotation.SimpleSetter; +import ca.uhn.fhir.parser.DataFormatException; + +@DatatypeDef(name = "positiveInt") +public class PositiveIntDt extends IntegerDt { + + /** + * Constructor + */ + public PositiveIntDt() { + // nothing + } + + /** + * Constructor + */ + @SimpleSetter + public PositiveIntDt(@SimpleSetter.Parameter(name = "theInteger") int theInteger) { + setValue(theInteger); + } + + /** + * Constructor + * + * @param theIntegerAsString + * A string representation of an integer + * @throws DataFormatException + * If the string is not a valid integer representation + */ + public PositiveIntDt(String theIntegerAsString) { + setValueAsString(theIntegerAsString); + } + +} diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/UnsignedIntDt.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/UnsignedIntDt.java new file mode 100644 index 00000000000..ee54b81da52 --- /dev/null +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/UnsignedIntDt.java @@ -0,0 +1,57 @@ +package ca.uhn.fhir.model.primitive; + +/* + * #%L + * HAPI FHIR - Core Library + * %% + * Copyright (C) 2014 - 2015 University Health Network + * %% + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * #L% + */ + +import ca.uhn.fhir.model.api.annotation.DatatypeDef; +import ca.uhn.fhir.model.api.annotation.SimpleSetter; +import ca.uhn.fhir.parser.DataFormatException; + +@DatatypeDef(name = "unsignedInt") +public class UnsignedIntDt extends IntegerDt { + + /** + * Constructor + */ + public UnsignedIntDt() { + // nothing + } + + /** + * Constructor + */ + @SimpleSetter + public UnsignedIntDt(@SimpleSetter.Parameter(name = "theInteger") int theInteger) { + setValue(theInteger); + } + + /** + * Constructor + * + * @param theIntegerAsString + * A string representation of an integer + * @throws DataFormatException + * If the string is not a valid integer representation + */ + public UnsignedIntDt(String theIntegerAsString) { + setValueAsString(theIntegerAsString); + } + +} diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/ApacheProxyAddressStrategy.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/ApacheProxyAddressStrategy.java new file mode 100644 index 00000000000..c7dd4162913 --- /dev/null +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/ApacheProxyAddressStrategy.java @@ -0,0 +1,97 @@ +package ca.uhn.fhir.rest.server; + +/* + * #%L + * HAPI FHIR - Core Library + * %% + * Copyright (C) 2014 - 2015 University Health Network + * %% + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * #L% + */ + +import org.apache.commons.lang3.StringUtils; + +import javax.servlet.ServletContext; +import javax.servlet.http.HttpServletRequest; + +/** + * Works like the normal {@link ca.uhn.fhir.rest.server.IncomingRequestAddressStrategy} unless there's an + * x-forwarded-host present, in which case that's used in place of the server's address. + * + * If the Apache Http Server mod_proxy isn't configured to supply x-forwarded-proto, the factory method that you use + * to create the address strategy will determine the default. Note that mod_proxy doesn't set this by default, but it can be + * configured via RequestHeader set X-Forwarded-Proto http (or https) + * + * If you want to set the protocol based on something other than the constructor argument, you should be able to do so + * by overriding protocol. + * + * Note that while this strategy was designed to work with Apache Http Server, and has been tested against it, it should work with + * any proxy server that sets x-forwarded-host + * + * Created by Bill de Beaubien on 3/30/2015. + */ +public class ApacheProxyAddressStrategy extends IncomingRequestAddressStrategy { + private boolean myUseHttps = false; + + protected ApacheProxyAddressStrategy(boolean theUseHttps) { + myUseHttps = theUseHttps; + } + + public static ApacheProxyAddressStrategy forHttp() { + return new ApacheProxyAddressStrategy(false); + } + + public static ApacheProxyAddressStrategy forHttps() { + return new ApacheProxyAddressStrategy(true); + } + + @Override + public String determineServerBase(ServletContext theServletContext, HttpServletRequest theRequest) { + String forwardedHost = getForwardedHost(theRequest); + if (forwardedHost != null) { + return forwardedServerBase(theServletContext, theRequest, forwardedHost); + } + return super.determineServerBase(theServletContext, theRequest); + } + + private String getForwardedHost(HttpServletRequest theRequest) { + String forwardedHost = theRequest.getHeader("x-forwarded-host"); + if (forwardedHost != null) { + int commaPos = forwardedHost.indexOf(','); + if (commaPos >= 0) { + forwardedHost = forwardedHost.substring(0, commaPos - 1); + } + } + return forwardedHost; + } + + public String forwardedServerBase(ServletContext theServletContext, HttpServletRequest theRequest, String theForwardedHost) { + String serverBase = super.determineServerBase(theServletContext, theRequest); + String host = theRequest.getHeader("host"); + if (host != null) { + serverBase = serverBase.replace(host, theForwardedHost); + serverBase = serverBase.substring(serverBase.indexOf("://")); + return protocol(theRequest) + serverBase; + } + return serverBase; + } + + protected String protocol(HttpServletRequest theRequest) { + String protocol = theRequest.getHeader("x-forwarded-proto"); + if (protocol != null) { + return protocol; + } + return myUseHttps ? "https" : "http"; + } +} diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/SchemaBaseValidator.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/SchemaBaseValidator.java index b387b4b8e88..ea75a7ec7dc 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/SchemaBaseValidator.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/SchemaBaseValidator.java @@ -113,7 +113,7 @@ class SchemaBaseValidator implements IValidator { try { schema = schemaFactory.newSchema(new Source[] { baseSource }); } catch (SAXException e) { - throw new ConfigurationException("Could not load/parse schema file", e); + throw new ConfigurationException("Could not load/parse schema file: " + theSchemaName, e); } myKeyToSchema.put(key, schema); return schema; diff --git a/hapi-fhir-base/src/main/resources/ca/uhn/fhir/narrative/datatype/IdentifierDt.html b/hapi-fhir-base/src/main/resources/ca/uhn/fhir/narrative/datatype/IdentifierDt.html index 92e522eb98d..b40c9c50f76 100644 --- a/hapi-fhir-base/src/main/resources/ca/uhn/fhir/narrative/datatype/IdentifierDt.html +++ b/hapi-fhir-base/src/main/resources/ca/uhn/fhir/narrative/datatype/IdentifierDt.html @@ -1,4 +1,3 @@
- - +
diff --git a/hapi-fhir-structures-dstu/src/test/java/ca/uhn/fhir/narrative/DefaultThymeleafNarrativeGeneratorTest.java b/hapi-fhir-structures-dstu/src/test/java/ca/uhn/fhir/narrative/DefaultThymeleafNarrativeGeneratorTest.java index d01653e2dc4..0e2c2c41a74 100644 --- a/hapi-fhir-structures-dstu/src/test/java/ca/uhn/fhir/narrative/DefaultThymeleafNarrativeGeneratorTest.java +++ b/hapi-fhir-structures-dstu/src/test/java/ca/uhn/fhir/narrative/DefaultThymeleafNarrativeGeneratorTest.java @@ -70,10 +70,11 @@ public class DefaultThymeleafNarrativeGeneratorTest { assertEquals("joe john BLOW (123456)", title); ourLog.info(title); - value.getIdentifierFirstRep().setLabel("FOO MRN 123"); - title = gen.generateTitle(value); - assertEquals("joe john BLOW (FOO MRN 123)", title); - ourLog.info(title); + // Removed because label is gone in DSTU2 +// value.getIdentifierFirstRep().setLabel("FOO MRN 123"); +// title = gen.generateTitle(value); +// assertEquals("joe john BLOW (FOO MRN 123)", title); +// ourLog.info(title); } diff --git a/hapi-fhir-structures-dstu2/pom.xml b/hapi-fhir-structures-dstu2/pom.xml index 1a5331ba33a..8039779f821 100644 --- a/hapi-fhir-structures-dstu2/pom.xml +++ b/hapi-fhir-structures-dstu2/pom.xml @@ -189,13 +189,16 @@ ca.uhn.fhir.model.dstu2 dstu2 + clinicalimpression + familymemberhistory + flag + processresponse Condition Supply DeviceComponent Communication Group ValueSet - OralHealthClaim Coverage Appointment Slot @@ -206,20 +209,15 @@ NamingSystem HealthcareService OrderResponse - StatusResponse ConceptMap - PharmacyClaim - Reversal Practitioner CarePlan - ClinicalAssessment Substance DeviceUseRequest Schedule EligibilityRequest QuestionnaireAnswers PaymentReconciliation - ProfessionalClaim ImagingObjectSelection OperationDefinition ClaimResponse @@ -231,19 +229,14 @@ ExplanationOfBenefit SupportingDocumentation RelatedPerson - InstitutionalClaim - Alert AuditEvent EligibilityResponse - StatusRequest Person ProcedureRequest ProcessRequest Claim - VisionClaim DeviceMetric Organization - Readjudicate ImmunizationRecommendation MedicationDispense MedicationPrescription @@ -254,7 +247,6 @@ OperationOutcome Media Binary - Other VisionPrescription DocumentReference Immunization @@ -273,14 +265,12 @@ DocumentManifest MedicationAdministration Encounter - PendedRequest List DeviceUseStatement Goal NutritionOrder SearchParameter ReferralRequest - FamilyHistory EnrollmentRequest Location Contract diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/allergyintolerance.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/allergyintolerance.sch index 78ae9463c05..1783269c0f9 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/allergyintolerance.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/allergyintolerance.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,6 +47,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/appointment.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/appointment.sch index 1d78968f8dd..ba1ab117bc7 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/appointment.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/appointment.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,6 +47,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/appointmentresponse.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/appointmentresponse.sch index 4eff2720212..241f749aab8 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/appointmentresponse.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/appointmentresponse.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,6 +47,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/auditevent.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/auditevent.sch index 5bb1f9cfee8..e318763ddcc 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/auditevent.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/auditevent.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -59,6 +59,9 @@ cod-1: If a valueSet is provided, a system URI Is required + + cod-1: If a valueSet is provided, a system URI Is required + sev-3: Either a userId or a reference, but not both @@ -77,12 +80,21 @@ cod-1: If a valueSet is provided, a system URI Is required + + cod-1: If a valueSet is provided, a system URI Is required + cod-1: If a valueSet is provided, a system URI Is required - sev-2: Either an identifier or a reference, but not both sev-1: Either a name or a query (or both) + sev-2: Either an identifier or a reference, but not both + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/basic.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/basic.sch index a12ca2b3985..9f6d3bfa8c3 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/basic.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/basic.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,6 +47,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/bodysite.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/bodysite.sch index ae61258de6c..f939a62f301 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/bodysite.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/bodysite.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,45 +47,33 @@ cod-1: If a valueSet is provided, a system URI Is required + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end ref-1: SHALL have a local reference if the resource is provided inline - + ccc-2: Only one coding in a set can be chosen directly by the user - + cod-1: If a valueSet is provided, a system URI Is required - + ccc-2: Only one coding in a set can be chosen directly by the user - + cod-1: If a valueSet is provided, a system URI Is required - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - qty-3: If a code for the units is present, the system SHALL also be present - att-1: It the Attachment has data, it SHALL have a contentType diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/bundle.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/bundle.sch index 2d448382755..06d55c06957 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/bundle.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/bundle.sch @@ -25,10 +25,10 @@ cod-1: If a valueSet is provided, a system URI Is required - bdl-2: entry.search only when a search - bdl-1: total only when a search or history bdl-3: entry.transaction when (and only when) a transaction bdl-4: entry.transactionResponse when (and only when) a transaction-response + bdl-1: total only when a search or history + bdl-2: entry.search only when a search bdl-5: must be a resource unless there's a transaction or transaction response diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/careplan.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/careplan.sch index c1c8376630b..6d4b8d2a220 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/careplan.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/careplan.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,6 +47,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end @@ -59,9 +65,21 @@ per-1: If present, start SHALL have a lower value than end + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + ref-1: SHALL have a local reference if the resource is provided inline + + ref-1: SHALL have a local reference if the resource is provided inline + ccc-2: Only one coding in a set can be chosen directly by the user @@ -71,58 +89,82 @@ ref-1: SHALL have a local reference if the resource is provided inline - + ref-1: SHALL have a local reference if the resource is provided inline ref-1: SHALL have a local reference if the resource is provided inline - + ref-1: SHALL have a local reference if the resource is provided inline - - cpl-1: DailyDose can only be specified if activity category is drug or food - cpl-2: Quantity can only be specified if activity category is supply + cpl-3: Only provide a detail reference, or a simple detail summary + cpl-2: Quantity can only be specified if activity category is supply + cpl-1: DailyDose can only be specified if activity category is drug or food - + ccc-2: Only one coding in a set can be chosen directly by the user - + cod-1: If a valueSet is provided, a system URI Is required - - tim-3: Either frequency or when can exist, not both - tim-1: if there's a duration, there needs to be duration units - tim-2: if there's a period, there needs to be duration units + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + tim-6: If there's a periodMax, there must be a period tim-7: If there's a durationMax, there must be a duration + tim-1: if there's a duration, there needs to be duration units + tim-2: if there's a period, there needs to be duration units + tim-3: Either frequency or when can exist, not both - + per-1: If present, start SHALL have a lower value than end - + tim-4: duration SHALL be a non-negative value - + tim-5: period SHALL be a non-negative value - + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + per-1: If present, start SHALL have a lower value than end - + ref-1: SHALL have a local reference if the resource is provided inline - + ref-1: SHALL have a local reference if the resource is provided inline - + ref-1: SHALL have a local reference if the resource is provided inline - + qty-3: If a code for the units is present, the system SHALL also be present - + qty-3: If a code for the units is present, the system SHALL also be present diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/claim.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/claim.sch index da946919f7b..9ccc50edcd4 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/claim.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/claim.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,6 +47,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/claimresponse.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/claimresponse.sch index ddce729c09a..4bbc810820a 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/claimresponse.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/claimresponse.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,6 +47,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end @@ -137,6 +143,12 @@ qty-3: If a code for the units is present, the system SHALL also be present + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/clinicalimpression.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/clinicalimpression.sch index b4e009ce4e4..566205e008a 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/clinicalimpression.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/clinicalimpression.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/communication.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/communication.sch index cc6a54dad25..dd6fd27ea7b 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/communication.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/communication.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,6 +47,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/communicationrequest.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/communicationrequest.sch index 5b945f2a365..24a5647abd1 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/communicationrequest.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/communicationrequest.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,6 +47,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/composition.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/composition.sch index 198450ace66..937fc9ae718 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/composition.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/composition.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,6 +47,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/conceptmap.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/conceptmap.sch index b2e97ef8184..f3aee73b6c3 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/conceptmap.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/conceptmap.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,6 +47,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/condition.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/condition.sch index 6122684ff1e..d5d79af5503 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/condition.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/condition.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,6 +47,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end @@ -136,15 +142,15 @@ ref-1: SHALL have a local reference if the resource is provided inline - - con-3: location SHALL have code or details - - + ccc-2: Only one coding in a set can be chosen directly by the user - + cod-1: If a valueSet is provided, a system URI Is required + + ref-1: SHALL have a local reference if the resource is provided inline + con-4: Relationship SHALL have either a code or a target diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/conformance.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/conformance.sch index de68053f5c2..5b288bd4d28 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/conformance.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/conformance.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -48,12 +48,12 @@ cod-1: If a valueSet is provided, a system URI Is required - cnf-1: A Conformance statement SHALL have at least one of rest, messaging or document - cnf-2: A Conformance statement SHALL have at least one of description, software, or implementation + cnf-8: There can only be one REST declaration per mode + cnf-7: The set of documents must be unique by the combination of profile & mode cnf-4: If there is more than one messaging element, endpoint must be specified for each one cnf-5: The set of end points listed for messaging must be unique - cnf-7: The set of documents must be unique by the combination of profile & mode - cnf-8: There can only be one REST declaration per mode + cnf-2: A Conformance statement SHALL have at least one of description, software, or implementation + cnf-1: A Conformance statement SHALL have at least one of rest, messaging or document cpt-2: A system is required if a value is provided. @@ -65,8 +65,8 @@ ref-1: SHALL have a local reference if the resource is provided inline - cnf-10: A given query can only be described once per RESTful mode cnf-9: A given resource can only be described once per RESTful mode + cnf-10: A given query can only be described once per RESTful mode ccc-2: Only one coding in a set can be chosen directly by the user @@ -75,8 +75,8 @@ cod-1: If a valueSet is provided, a system URI Is required - cnf-12: Search parameter names must be unique in the context of a resource cnf-11: Operation codes must be unique in the context of a resource + cnf-12: Search parameter names must be unique in the context of a resource ref-1: SHALL have a local reference if the resource is provided inline @@ -85,8 +85,8 @@ ref-1: SHALL have a local reference if the resource is provided inline - cnf-3: Messaging end point is required (and is only permitted) when statement is for an implementation cnf-6: The set of events per messaging endpoint must be unique by the combination of code & mode + cnf-3: Messaging end point is required (and is only permitted) when statement is for an implementation cod-1: If a valueSet is provided, a system URI Is required diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/contract.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/contract.sch index 6cb034e26ed..959ade265b4 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/contract.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/contract.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,6 +47,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end @@ -107,6 +113,12 @@ ref-1: SHALL have a local reference if the resource is provided inline + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end @@ -128,6 +140,12 @@ ref-1: SHALL have a local reference if the resource is provided inline + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end @@ -182,6 +200,12 @@ ref-1: SHALL have a local reference if the resource is provided inline + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/contraindication.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/contraindication.sch index 56bac3a4353..9f464384a2b 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/contraindication.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/contraindication.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -62,6 +62,12 @@ ref-1: SHALL have a local reference if the resource is provided inline + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/coverage.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/coverage.sch index 82c3ee53786..226a9d083de 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/coverage.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/coverage.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -50,6 +50,12 @@ ref-1: SHALL have a local reference if the resource is provided inline + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end @@ -62,12 +68,24 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end ref-1: SHALL have a local reference if the resource is provided inline + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end @@ -77,6 +95,12 @@ ref-1: SHALL have a local reference if the resource is provided inline + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/dataelement.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/dataelement.sch index 4f84c1e3d12..872ee710015 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/dataelement.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/dataelement.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,6 +47,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end @@ -66,16 +72,16 @@ per-1: If present, start SHALL have a lower value than end - eld-13: Types must be unique by the combination of code and profile - eld-14: Constraints must be unique by key - eld-11: Binding can only be present for coded elements, string, and uri - eld-8: Pattern and value are mutually exclusive - eld-15: Constraint names must be unique. - eld-16: default value and meaningWhenMissing are mutually exclusive eld-2: Min <= Max + eld-5: Either a namereference or a fixed value (but not both) is permitted eld-7: Pattern may only be specified if there is one type eld-6: Fixed value may only be specified if there is one type - eld-5: Either a namereference or a fixed value (but not both) is permitted + eld-11: Binding can only be present for coded elements, string, and uri + eld-8: Pattern and value are mutually exclusive + eld-14: Constraints must be unique by key + eld-13: Types must be unique by the combination of code and profile + eld-16: default value and meaningWhenMissing are mutually exclusive + eld-15: Constraint names must be unique. cod-1: If a valueSet is provided, a system URI Is required @@ -90,8 +96,8 @@ eld-4: Aggregation may only be specified if one of the allowed types for the element is a resource - eld-9: Example value sets are always extensible eld-10: provide either a reference or a description (or both) + eld-9: Example value sets are always extensible eld-12: uri SHALL start with http:// or https:// diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/device.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/device.sch index 00f4dc1c167..bfee28cf52a 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/device.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/device.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,6 +47,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/devicecomponent.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/devicecomponent.sch index 89d99e5e33f..e6ccc7e8e52 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/devicecomponent.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/devicecomponent.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -53,6 +53,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end @@ -83,6 +89,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/devicemetric.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/devicemetric.sch index 98e53f982d6..05c8664f23a 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/devicemetric.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/devicemetric.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -53,6 +53,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end @@ -72,11 +78,11 @@ ref-1: SHALL have a local reference if the resource is provided inline - tim-3: Either frequency or when can exist, not both - tim-1: if there's a duration, there needs to be duration units - tim-2: if there's a period, there needs to be duration units tim-6: If there's a periodMax, there must be a period tim-7: If there's a durationMax, there must be a duration + tim-1: if there's a duration, there needs to be duration units + tim-2: if there's a period, there needs to be duration units + tim-3: Either frequency or when can exist, not both per-1: If present, start SHALL have a lower value than end @@ -87,5 +93,11 @@ tim-5: period SHALL be a non-negative value + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/deviceuserequest.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/deviceuserequest.sch index fc03f9f4006..44aba9d7e54 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/deviceuserequest.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/deviceuserequest.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -62,6 +62,12 @@ ref-1: SHALL have a local reference if the resource is provided inline + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end @@ -84,11 +90,11 @@ ref-1: SHALL have a local reference if the resource is provided inline - tim-3: Either frequency or when can exist, not both - tim-1: if there's a duration, there needs to be duration units - tim-2: if there's a period, there needs to be duration units tim-6: If there's a periodMax, there must be a period tim-7: If there's a durationMax, there must be a duration + tim-1: if there's a duration, there needs to be duration units + tim-2: if there's a period, there needs to be duration units + tim-3: Either frequency or when can exist, not both per-1: If present, start SHALL have a lower value than end @@ -99,6 +105,12 @@ tim-5: period SHALL be a non-negative value + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/deviceusestatement.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/deviceusestatement.sch index 61a21b45380..4f758157e73 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/deviceusestatement.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/deviceusestatement.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -62,6 +62,12 @@ ref-1: SHALL have a local reference if the resource is provided inline + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end @@ -78,11 +84,11 @@ ref-1: SHALL have a local reference if the resource is provided inline - tim-3: Either frequency or when can exist, not both - tim-1: if there's a duration, there needs to be duration units - tim-2: if there's a period, there needs to be duration units tim-6: If there's a periodMax, there must be a period tim-7: If there's a durationMax, there must be a duration + tim-1: if there's a duration, there needs to be duration units + tim-2: if there's a period, there needs to be duration units + tim-3: Either frequency or when can exist, not both per-1: If present, start SHALL have a lower value than end @@ -93,6 +99,12 @@ tim-5: period SHALL be a non-negative value + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/diagnosticorder.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/diagnosticorder.sch index ded7f24a29e..5d48b3fed54 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/diagnosticorder.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/diagnosticorder.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -53,6 +53,12 @@ ref-1: SHALL have a local reference if the resource is provided inline + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/diagnosticreport.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/diagnosticreport.sch index 144cd208eec..31adafb304a 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/diagnosticreport.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/diagnosticreport.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -62,6 +62,12 @@ ref-1: SHALL have a local reference if the resource is provided inline + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/documentmanifest.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/documentmanifest.sch index a1c74f020e9..85521546f3b 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/documentmanifest.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/documentmanifest.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,12 +47,24 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end ref-1: SHALL have a local reference if the resource is provided inline + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end @@ -74,9 +86,18 @@ ref-1: SHALL have a local reference if the resource is provided inline - + + att-1: It the Attachment has data, it SHALL have a contentType + + ref-1: SHALL have a local reference if the resource is provided inline + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/documentreference.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/documentreference.sch index cc66585d5c9..9996fa02098 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/documentreference.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/documentreference.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,12 +47,24 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end ref-1: SHALL have a local reference if the resource is provided inline + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end @@ -125,6 +137,12 @@ ref-1: SHALL have a local reference if the resource is provided inline + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/eligibilityrequest.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/eligibilityrequest.sch index 12f68168392..3138eaae7a3 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/eligibilityrequest.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/eligibilityrequest.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,6 +47,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/eligibilityresponse.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/eligibilityresponse.sch index 2cc42a191be..5577ab348bd 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/eligibilityresponse.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/eligibilityresponse.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,6 +47,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/encounter.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/encounter.sch index 21a027f4592..de79229c26e 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/encounter.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/encounter.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,6 +47,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end @@ -107,6 +113,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end @@ -122,10 +134,10 @@ cod-1: If a valueSet is provided, a system URI Is required - + ccc-2: Only one coding in a set can be chosen directly by the user - + cod-1: If a valueSet is provided, a system URI Is required diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/enrollmentrequest.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/enrollmentrequest.sch index 914d247ecc3..e8cc8956afd 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/enrollmentrequest.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/enrollmentrequest.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,6 +47,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/enrollmentresponse.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/enrollmentresponse.sch index 40d49d8413d..138038833e5 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/enrollmentresponse.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/enrollmentresponse.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,6 +47,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/episodeofcare.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/episodeofcare.sch index 47919337006..41701c194cd 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/episodeofcare.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/episodeofcare.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,6 +47,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/explanationofbenefit.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/explanationofbenefit.sch index 2478ee5177b..40349067cce 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/explanationofbenefit.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/explanationofbenefit.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,6 +47,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/familymemberhistory.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/familymemberhistory.sch new file mode 100644 index 00000000000..d4aac66fe75 --- /dev/null +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/familymemberhistory.sch @@ -0,0 +1,129 @@ + + + + + + + Global + + global-1: All FHIR elements must have a @value or children + + + + FamilyMemberHistory + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + fhs-1: Can have age[x] or birth[x], but not both + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + qty-3: If a code for the units is present, the system SHALL also be present + + + rng-2: If present, low SHALL have a lower value than high + rng-3: Quantity values cannot have a comparator when used in a Range + + + qty-3: If a code for the units is present, the system SHALL also be present + + + qty-3: If a code for the units is present, the system SHALL also be present + + + qty-3: If a code for the units is present, the system SHALL also be present + + + rng-2: If present, low SHALL have a lower value than high + rng-3: Quantity values cannot have a comparator when used in a Range + + + qty-3: If a code for the units is present, the system SHALL also be present + + + qty-3: If a code for the units is present, the system SHALL also be present + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + qty-3: If a code for the units is present, the system SHALL also be present + + + rng-2: If present, low SHALL have a lower value than high + rng-3: Quantity values cannot have a comparator when used in a Range + + + qty-3: If a code for the units is present, the system SHALL also be present + + + qty-3: If a code for the units is present, the system SHALL also be present + + + diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/fhir-all.xsd b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/fhir-all.xsd deleted file mode 100644 index 0d82833e14f..00000000000 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/fhir-all.xsd +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/fhir-base.xsd b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/fhir-base.xsd deleted file mode 100644 index f0001ca0ea1..00000000000 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/fhir-base.xsd +++ /dev/null @@ -1,4465 +0,0 @@ - - - - - - - - - - - - - A whole number - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - - - - - - - - - A date, date-time or partial date (e.g. just year or year + month). If hours and minutes are specified, a time zone SHALL be populated. The format is a union of the schema types gYear, gYearMonth, date and dateTime. Seconds must be provided due to schema type constraints but may be zero-filled and may be ignored. Dates SHALL be valid dates. - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - - - - - - A string which has at least one character and no leading or trailing whitespace and where there is no whitespace other than single spaces in the contents - If the element is present, it must have either a @value, an @id referenced from the Narrative, or extensions - - - - - - - - - - - - - - - - - - A date, or partial date (e.g. just year or year + month). There is no time zone. The format is a union of the schema types gYear, gYearMonth and date. Dates SHALL be valid dates. - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - - - - A rational number with implicit precision - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - - - - String of characters used to identify a name or a resource - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - - - - - - - Any combination of lowercase letters, numerals, "-" and ".", with a length limit of 36 characters. (This might be an integer, an unprefixed OID, UUID or any other identifier pattern that meets these constraints.) Systems SHALL send ids as lower-case but SHOULD interpret them case-insensitively. - If the element is present, it must have either a @value, an @id referenced from the Narrative, or extensions - - - - - - - - - - - - - A stream of bytes - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - - - - - - A time during the day, with no date specified - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - - - - - - - An oid represented as a URI - If the element is present, it must have either a @value, an @id referenced from the Narrative, or extensions - - - - - - - - - - - - - - - A sequence of Unicode characters - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - - - - Value of "true" or "false" - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - - - - - - - A UUID, represented as a URI - If the element is present, it must have either a @value, an @id referenced from the Narrative, or extensions - - - - - - - - - - - - - An instant in time - known at least to the second - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Optional Extensions Element - found in all resources. - If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions - - - - - - - Value of extension - may be a resource or one of a constrained set of the data types (see Extensibility in the spec for list). - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Base definition for all elements that are defined inside a resource - but not those in a data type. - If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions - - - - - - - May be used to represent additional information that is not part of the basic definition of the element, and that modifies the understanding of the element that contains it. Usually modifier elements provide negation or qualification. In order to make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. - - - - - - - - - A human-readable formatted text, including images. - If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions - - - - - - - The status of the narrative - whether it's entirely generated (from just the defined data or the extensions too), or whether a human authored it and it may contain additional data. - - - - - The actual narrative content, a stripped down version of XHTML. - - - - - - - - - - - The contents of the narrative are entirely generated from the structured data in the resource. - - - - - The contents of the narrative are entirely generated from the structured data in the resource and some of the content is generated from extensions. - - - - - The contents of the narrative contain additional information not found in the structured data. - - - - - the contents of the narrative are some equivalent of "No human-readable text provided for this resource". - - - - - - - The status of a resource narrative - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - Base definition for all elements in a resource. - If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions - - - - - May be used to represent additional information that is not part of the basic definition of the element. In order to make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. - - - - - - - - A time period defined by a start and end date and optionally time. - If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions - - - - - - - The start of the period. The boundary is inclusive. - - - - - The end of the period. If the end of the period is missing, it means that the period is ongoing. - - - - - - - - - A reference to a code defined by a terminology system. - If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions - - - - - - - The identification of the code system that defines the meaning of the symbol in the code. - - - - - The version of the code system which was used when choosing this code. Note that a well-maintained code system does not need the version reported, because the meaning of codes is consistent across versions. However this cannot consistently be assured. and when the meaning is not guaranteed to be consistent, the version SHOULD be exchanged. - - - - - A symbol in syntax defined by the system. The symbol may be a predefined code or an expression in a syntax defined by the coding system (e.g. post-coordination). - - - - - A representation of the meaning of the code in the system, following the rules of the system. - - - - - Indicates that this code was chosen by a user directly - i.e. off a pick list of available items (codes or displays). - - - - - - - - - A set of ordered Quantities defined by a low and high limit. - If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions - - - - - - - The low limit. The boundary is inclusive. - - - - - The high limit. The boundary is inclusive. - - - - - - - - - A measured amount (or an amount that can potentially be measured). Note that measured amounts include amounts that are not precisely quantified, including amounts involving arbitrary units and floating currencies. - If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions - - - - - - - The value of the measured amount. The value includes an implicit precision in the presentation of the value. - - - - - How the value should be understood and represented - whether the actual value is greater or less than the stated value due to measurement issues. E.g. if the comparator is "<" , then the real value is < stated value. - - - - - A human-readable form of the units. - - - - - The identification of the system that provides the coded form of the unit. - - - - - A computer processable form of the units in some unit representation system. - - - - - - - - - - - The actual value is less than the given value. - - - - - The actual value is less than or equal to the given value. - - - - - The actual value is greater than or equal to the given value. - - - - - The actual value is greater than the given value. - - - - - - - How the Quantity should be understood and represented - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - For referring to data content defined in other formats. - If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions - - - - - - - Identifies the type of the data in the attachment and allows a method to be chosen to interpret or render the data. Includes mime type parameters such as charset where appropriate. - - - - - The human language of the content. The value can be any valid value according to BCP 47. - - - - - The actual data of the attachment - a sequence of bytes. In XML, represented using base64. - - - - - An alternative location where the data can be accessed. - - - - - The number of bytes of data that make up this attachment. - - - - - The calculated hash of the data using SHA-1. Represented using base64. - - - - - A label or set of text to display in place of the data. - - - - - The date that the attachment was first created. - - - - - - - - - A relationship of two Quantity values - expressed as a numerator and a denominator. - If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions - - - - - - - The value of the numerator. - - - - - The value of the denominator. - - - - - - - - - A series of measurements taken by a device, with upper and lower limits. There may be more than one dimension in the data. - If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions - - - - - - - The base quantity that a measured value of zero represents. In addition, this provides the units of the entire measurement series. - - - - - The length of time between sampling times, measured in milliseconds. - - - - - A correction factor that is applied to the sampled data points before they are added to the origin. - - - - - The lower limit of detection of the measured points. This is needed if any of the data points have the value "L" (lower than detection limit). - - - - - The upper limit of detection of the measured points. This is needed if any of the data points have the value "U" (higher than detection limit). - - - - - The number of sample points at each time point. If this value is greater than one, then the dimensions will be interlaced - all the sample points for a point in time will be recorded at once. - - - - - A series of data points which are decimal values separated by a single space (character u20). The special values "E" (error), "L" (below detection limit) and "U" (above detection limit) can also be used in place of a decimal value. - - - - - - - - - - - - - - - - - - - - - - A reference from one resource to another. - If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions - - - - - - - A reference to a location at which the other resource is found. The reference may be a relative reference, in which case it is relative to the service base URL, or an absolute URL that resolves to the location where the resource is found. The reference may be version specific or not. If the reference is not to a FHIR RESTful server, then it should be assumed to be version specific. Internal fragment references (start with '#') refer to contained resources. - - - - - Plain text narrative that identifies the resource in addition to the resource reference. - - - - - - - - - A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text. - If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions - - - - - - - A reference to a code defined by a terminology system. - - - - - A human language representation of the concept as seen/selected/uttered by the user who entered the data and/or which represents the intended meaning of the user. - - - - - - - - - A technical identifier - identifies some entity uniquely and unambiguously. - If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions - - - - - - - The purpose of this identifier. - - - - - A text string for the identifier that can be displayed to a human so they can recognize the identifier. - - - - - Establishes the namespace in which set of possible id values is unique. - - - - - The portion of the identifier typically displayed to the user and which is unique within the context of the system. - - - - - Time period during which identifier is/was valid for use. - - - - - Organization that issued/manages the identifier. - - - - - - - - - - - the identifier recommended for display and use in real-world interactions. - - - - - the identifier considered to be most trusted for the identification of this item. - - - - - A temporary identifier. - - - - - An identifier that was assigned in secondary use - it serves to identify the object in a relative context, but cannot be consistently assigned to the same object again in a different context. - - - - - - - Identifies the purpose for this identifier, if known - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - An XML digital signature along with supporting context. - If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions - - - - - - - An indication of the reason that the entity signed this document. This may be explicitly included as part of the signature information and can be used when determining accountability for various actions concerning the document. - - - - - When the digital signature was signed. - - - - - A reference to an application-usable description of the person that signed the certificate (e.g. the signature used their private key). - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The base64 encoding of the XML-Signature. - - - - - - - - - - - - - The value of the measured amount. The value includes an implicit precision in the presentation of the value. - - - - - How the value should be understood and represented - whether the actual value is greater or less than the stated value due to measurement issues. E.g. if the comparator is "<" , then the real value is < stated value. - - - - - A human-readable form of the units. - - - - - The identification of the system that provides the coded form of the unit. - - - - - A computer processable form of the units in some unit representation system. - - - - - - - - - - - - - - The value of the measured amount. The value includes an implicit precision in the presentation of the value. - - - - - How the value should be understood and represented - whether the actual value is greater or less than the stated value due to measurement issues. E.g. if the comparator is "<" , then the real value is < stated value. - - - - - A human-readable form of the units. - - - - - The identification of the system that provides the coded form of the unit. - - - - - A computer processable form of the units in some unit representation system. - - - - - - - - - - - - - - The value of the measured amount. The value includes an implicit precision in the presentation of the value. - - - - - How the value should be understood and represented - whether the actual value is greater or less than the stated value due to measurement issues. E.g. if the comparator is "<" , then the real value is < stated value. - - - - - A human-readable form of the units. - - - - - The identification of the system that provides the coded form of the unit. - - - - - A computer processable form of the units in some unit representation system. - - - - - - - - - - - - - - The value of the measured amount. The value includes an implicit precision in the presentation of the value. - - - - - How the value should be understood and represented - whether the actual value is greater or less than the stated value due to measurement issues. E.g. if the comparator is "<" , then the real value is < stated value. - - - - - A human-readable form of the units. - - - - - The identification of the system that provides the coded form of the unit. - - - - - A computer processable form of the units in some unit representation system. - - - - - - - - - - - - - - The value of the measured amount. The value includes an implicit precision in the presentation of the value. - - - - - How the value should be understood and represented - whether the actual value is greater or less than the stated value due to measurement issues. E.g. if the comparator is "<" , then the real value is < stated value. - - - - - A human-readable form of the units. - - - - - The identification of the system that provides the coded form of the unit. - - - - - A computer processable form of the units in some unit representation system. - - - - - - - - - - Captures constraints on each element within the resource, profile, or extension. - If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions - - - - - - - The path identifies the element and is expressed as a "."-separated list of ancestor elements, beginning with the name of the resource or extension. - - - - - Codes that define how this element is represented in instances, when the deviation varies from the normal case. - - - - - The name of this element definition (to refer to it from other element definitions using ElementDefinition.nameReference). This is a unique name referring to a specific set of constraints applied to this element. One use of this is to provide a name to different slices of the same element. - - - - - The text to display beside the element indicating its meaning or to use to prompt for the element in a user display or form. - - - - - A code that provides the meaning for the element according to a particular terminology. - - - - - Indicates that the element is sliced into a set of alternative definitions (there are multiple definitions on a single element in the base resource). The set of slices is any elements that come after this in the element sequence that have the same path, until a shorter path occurs (the shorter path terminates the set). - - - - - A concise definition that is shown in the generated XML format that summarizes profiles (used throughout the specification). - - - - - Provides a complete explanation of the meaning of the data element for human readability. For the case of elements derived from existing elements (e.g. constraints), the definition SHALL be consistent with the base definition, but convey the meaning of the element in the particular context of use of the resource. - - - - - Comments about the use of the element, including notes about how to use the data properly, exceptions to proper use, etc. - - - - - Explains why this element is needed and why it's been constrained as it has. - - - - - Identifies additional names by which this element might also be known. - - - - - The minimum number of times this element SHALL appear in the instance. - - - - - The maximum number of times this element is permitted to appear in the instance. - - - - - The data type or resource that the value of this element is permitted to be. - - - - - Identifies the name of a slice defined elsewhere in the profile whose constraints should be applied to the current element. - - - - - The value that should be used if there is no value stated in the instance. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The Implicit meaning that is to be understood when this element is missing. - - - - - Specifies a value that SHALL be exactly the value for this element in the instance. For purposes of comparison, non-signficant whitespace is ignored, and all values must be an exact match (case and accent sensitive). Missing elements/attributes must also be missing. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Specifies a value that the value in the instance SHALL follow - that is, any value in the pattern must be found in the instance. Other additional values may be found too. This is effectively constraint by example. The values of elements present in the pattern must match exactly (case-senstive, accent-sensitive, etc.). - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - A sample value for this element demonstrating the type of information that would typically be captured. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Indicates the maximum length in characters that is permitted to be present in conformant instances and which is expected to be supported by conformant consumers that support the element. - - - - - A reference to an invariant that may make additional statements about the cardinality or value in the instance. - - - - - Formal constraints such as co-occurrence and other constraints that can be computationally evaluated within the context of the instance. - - - - - If true, conformant resource authors SHALL be capable of providing a value for the element and resource consumers SHALL be capable of extracting and doing something useful with the data element. If false, the element may be ignored and not supported. - - - - - If true, the value of this element affects the interpretation of the element or resource that contains it, and the value of the element cannot be ignored. Typically, this is used for status, negation and qualification codes. The effect of this is that the element cannot be ignored by systems: they SHALL either recognize the element and process it, and/or a pre-determination has been made that it is not relevant to their particular system. - - - - - Whether the element should be included if a client requests a search with the parameter _summary=true. - - - - - Binds to a value set if this element is coded (code, Coding, CodeableConcept). - - - - - Identifies a concept from an external specification that roughly corresponds to this element. - - - - - - - - - Captures constraints on each element within the resource, profile, or extension. - If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions - - - - - - - An internal reference to the definition of a mapping. - - - - - Identifies the computable language in which mapping.map is expressed. - - - - - Expresses what part of the target specification corresponds to this element. - - - - - - - - - Captures constraints on each element within the resource, profile, or extension. - If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions - - - - - - - Designates which child elements are used to discriminate between the slices when processing an instance. If one or more discriminators are provided, the value of the child elements in the instance data SHALL completely distinguish which slice the element in the resource matches based on the allowed values for those elements in each of the slices. - - - - - A human-readable text description of how the slicing works. If there is no discriminator, this is required to be present to provide whatever information is possible about how the slices can be differentiated. - - - - - If the matching elements have to occur in the same order as defined in the profile. - - - - - Whether additional slices are allowed or not. When the slices are ordered, profile authors can also say that additional slices are only allowed at the end. - - - - - - - - - Captures constraints on each element within the resource, profile, or extension. - If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions - - - - - - - A descriptive name for this - can be useful for generating implementation artifacts. - - - - - Indicates the degree of conformance expectations associated with this binding - that is, the degree to which the provided value set must be adhered to in the instances. - - - - - Describes the intended use of this particular set of codes. - - - - - Points to the value set or external definition (e.g. implicit value set) that identifies the set of codes to be used. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Captures constraints on each element within the resource, profile, or extension. - If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions - - - - - - - Name of Data type or Resource that is a(or the) type used for this element. - - - - - Identifies a profile structure that SHALL hold for resources or datatypes referenced as the type of this element. Can be a local reference - to another structure in this profile, or a reference to a structure in another profile. - - - - - If the type is a reference to another resource, how the resource is or can be aggreated - is it a contained resource, or a reference, and if the context is a bundle, is it included in the bundle. - - - - - - - - - Captures constraints on each element within the resource, profile, or extension. - If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions - - - - - - - Allows identification of which elements have their cardinalities impacted by the constraint. Will not be referenced for constraints that do not affect cardinality. - - - - - Used to label the constraint in OCL or in short displays incapable of displaying the full human description. - - - - - Identifies the impact constraint violation has on the conformance of the instance. - - - - - Text that can be used to describe the constraint in messages identifying that the constraint has been violated. - - - - - An XPath expression of constraint that can be executed to see if this constraint is met. - - - - - - - - - - - In XML, this property is represented as an attribute not an element. - - - - - - - How a property is represented on the wire - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - - - No additional content is allowed other than that described by the slices in this profile. - - - - - Additional content is allowed anywhere in the list. - - - - - Additional content is allowed, but only at the end of the list. Note that using this requires that the slices be ordered, which makes it hard to share uses. This should only be done where absolutely required. - - - - - - - How slices are interpreted when evaluating an instance - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - - - To be conformant, instances of this element SHALL include a code from the specified value set. - - - - - To be conformant, instances of this element SHALL include a code from the specified value set if any of the codes within the value set can apply to the concept being communicated. If the valueset does not cover the concept (based on human review), alternate codings (or, data type allowing, text) may be included instead. - - - - - Instances are encouraged to draw from the specified codes for interoperability purposes but are not required to do so to be considered conformant. - - - - - Instances are not expected or even encouraged to draw from the specified value set. The value set merely provides examples of the types of concepts intended to be included. - - - - - - - Indication of the degree of conformance expectations associated with a binding - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - - - The reference is a local reference to a contained resource. - - - - - The reference to a resource that has to be resolved externally to the resource that includes the reference. - - - - - The resource the reference points to will be found in the same bundle as the resource that includes the reference. - - - - - - - How resource references can be aggregated - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - - - If the constraint is violated, the resource is not conformant. - - - - - If the constraint is violated, the resource is conformant, but it is not necessarily following best practice. - - - - - - - SHALL applications comply with this constraint? - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - Specifies an event that may occur multiple times. Timing schedules are used to record when things are expected or requested to occur. The most common usage is in dosage instructions for medications. They are also used when planning care of various kinds. - If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions - - - - - - - Identifies specific times when the event occurs. - - - - - A set of rules that describe when the event should occur. - - - - - - - - - Specifies an event that may occur multiple times. Timing schedules are used to record when things are expected or requested to occur. The most common usage is in dosage instructions for medications. They are also used when planning care of various kinds. - If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions - - - - - - - Outer bounds for start and/or end limits of the timing schedule. - - - - - A total count of the desired number of repetitions. - - - - - How long this thing happens for when it happens. - - - - - The units of time for the duration, in UCUM units. - - - - - The number of times to repeat the action within the specified period / period range (i.e. both period and periodMax provided). - - - - - If present, indicates that the frequency is a range - so repeat between [frequency] and [frequencyMax] times within the period or period range. - - - - - Indicates the duration of time over which repetitions are to occur. E.g. to express "3 times per day", 3 would be the frequency and "1 day" would be the period. - - - - - If present, indicates that the period is a range from [period] to [periodMax], allowing expressing concepts such as "do this once every 3-5 days. - - - - - The units of time for the period in UCUM units. - - - - - A real world event that the occurrence of the event should be tied to. - - - - - - - - - - - second. - - - - - minute. - - - - - hour. - - - - - day. - - - - - week. - - - - - month. - - - - - year. - - - - - - - A unit of time (units from UCUM) - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - - - event occurs [duration] before the hour of sleep (or trying to). - - - - - event occurs [duration] after waking. - - - - - event occurs at a meal (from the Latin cibus). - - - - - event occurs at breakfast (from the Latin cibus matutinus). - - - - - event occurs at lunch (from the Latin cibus diurnus). - - - - - event occurs at dinner (from the Latin ante cibus vespertinus). - - - - - event occurs [duration] before a meal (from the Latin ante cibus). - - - - - event occurs [duration] before breakfast (from the Latin ante cibus matutinus). - - - - - event occurs [duration] before lunch (from the Latin ante cibus diurnus). - - - - - event occurs [duration] before dinner (from the Latin ante cibus vespertinus). - - - - - event occurs [duration] after a meal (from the Latin post cibus). - - - - - event occurs [duration] after breakfast (from the Latin post cibus matutinus). - - - - - event occurs [duration] after lunch (from the Latin post cibus diurnus). - - - - - event occurs [duration] after dinner (from the Latin post cibus vespertinus). - - - - - - - Real world event that the schedule relates to - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - There is a variety of postal address formats defined around the world. This format defines a superset that is the basis for all addresses around the world. - If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions - - - - - - - The purpose of this address. - - - - - A full text representation of the address. - - - - - This component contains the house number, apartment number, street name, street direction, -P.O. Box number, delivery hints, and similar address information. - - - - - The name of the city, town, village or other community or delivery center. - - - - - Sub-unit of a country with limited sovereignty in a federally organized country. A code may be used if codes are in common use (i.e. US 2 letter state codes). - - - - - A postal code designating a region defined by the postal service. - - - - - Country - a nation as commonly understood or generally accepted. - - - - - Time period when address was/is in use. - - - - - - - - - - - A communication address at a home. - - - - - An office address. First choice for business related contacts during business hours. - - - - - A temporary address. The period can provide more detailed information. - - - - - This address is no longer in use (or was never correct, but retained for records). - - - - - - - The use of an address - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - A human's name with the ability to identify parts and usage. - If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions - - - - - - - Identifies the purpose for this name. - - - - - A full text representation of the name. - - - - - The part of a name that links to the genealogy. In some cultures (e.g. Eritrea) the family name of a son is the first name of his father. - - - - - Given name. - - - - - Part of the name that is acquired as a title due to academic, legal, employment or nobility status, etc. and that appears at the start of the name. - - - - - Part of the name that is acquired as a title due to academic, legal, employment or nobility status, etc. and that appears at the end of the name. - - - - - Indicates the period of time when this name was valid for the named person. - - - - - - - - - - - Known as/conventional/the one you normally use. - - - - - The formal name as registered in an official (government) registry, but which name might not be commonly used. May be called "legal name". - - - - - A temporary name. Name.period can provide more detailed information. This may also be used for temporary names assigned at birth or in emergency situations. - - - - - A name that is used to address the person in an informal manner, but is not part of their formal or usual name. - - - - - Anonymous assigned name, alias, or pseudonym (used to protect a person's identity for privacy reasons). - - - - - This name is no longer in use (or was never correct, but retained for records). - - - - - A name used prior to marriage. Marriage naming customs vary greatly around the world. This name use is for use by applications that collect and store "maiden" names. Though the concept of maiden name is often gender specific, the use of this term is not gender specific. The use of this term does not imply any particular history for a person's name, nor should the maiden name be determined algorithmically. - - - - - - - The use of a human name - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - The metadata about a resource. This is content in the resource that is maintained by the infrastructure. Changes to the content may not always be associated with version changes to the resource. - If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions - - - - - - - The version specific identifier, as it appears in the version portion of the url. This values changes when the resource is created, updated, or deleted. - - - - - When the resource last changed - e.g. when the version changed. - - - - - A list of profiles [[[StructureDefinition]]]s that this resource claims to conform to. The URL is a reference to [[[StructureDefinition.url]]]. - - - - - Security labels applied to this resource. These tags connect specific resources to the overall security policy and infrastructure. - - - - - Tags applied to this resource. Tags are intended to to be used to identify and relate resources to process and workflow, and applications are not required to consider the tags when interpreting the meaning of a resource. - - - - - - - - - Details for All kinds of technology mediated contact points for a person or organization, including telephone, email, etc. - If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions - - - - - - - Telecommunications form for contact point - what communications system is required to make use of the contact. - - - - - The actual contact point details, in a form that is meaningful to the designated communication system (i.e. phone number or email address). - - - - - Identifies the purpose for the contact point. - - - - - Time period when the contact point was/is in use. - - - - - - - - - - - The value is a telephone number used for voice calls. Use of full international numbers starting with + is recommended to enable automatic dialing support but not required. - - - - - The value is a fax machine. Use of full international numbers starting with + is recommended to enable automatic dialing support but not required. - - - - - The value is an email address. - - - - - The value is a url. This is intended for various personal contacts including blogs, Twitter, Facebook, etc. Do not use for email addresses. - - - - - - - Telecommunications form for contact point - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - - - A communication contact point at a home; attempted contacts for business purposes might intrude privacy and chances are one will contact family or other household members instead of the person one wishes to call. Typically used with urgent cases, or if no other contacts are available. - - - - - An office contact point. First choice for business related contacts during business hours. - - - - - A temporary contact point. The period can provide more detailed information. - - - - - This contact point is no longer in use (or was never correct, but retained for records). - - - - - A telecommunication device that moves and stays with its owner. May have characteristics of all other use codes, suitable for urgent matters, not the first choice for routine business. - - - - - - - Use of contact point - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - This special resource type is used to represent [operation](operations.html] request and response. It has no other use, and there is no RESTful end=point associated with it. - - - - - - - A parameter passed to or received from the operation. - - - - - - - - - This special resource type is used to represent [operation](operations.html] request and response. It has no other use, and there is no RESTful end=point associated with it. - If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions - - - - - - - The name of the parameter (reference to the operation definition). - - - - - If the parameter is a data type. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - If the parameter is a whole resource. - - - - - A named part of a parameter. In many implementation context, a set of named parts is known as a "Tuple". - - - - - - - - - This special resource type is used to represent [operation](operations.html] request and response. It has no other use, and there is no RESTful end=point associated with it. - If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions - - - - - - - The name of the parameter (reference to the operation definition). - - - - - The value of the parameter. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - If the parameter is a whole resource. - - - - - - - - - This special resource type is used to represent [operation](operations.html] request and response. It has no other use, and there is no RESTful end=point associated with it. - - - - - Base Resource for everything. - - - - - The logical id of the resource, as used in the url for the resoure. Once assigned, this value never changes. - - - - - The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content may not always be associated with version changes to the resource. - - - - - A reference to a set of rules that were followed when the resource was constructed, and which must be understood when processing the content. - - - - - The base language in which the resource is written. - - - - - - - A resource that includes narrative, extensions, and contained resources. - - - - - - - A human-readable narrative that contains a summary of the resource, and may be used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it "clinically safe" for a human to just read the narrative. Resource definitions may define what content should be represented in the narrative to ensure clinical safety. - - - - - These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, and nor can they have their own independent transaction scope. - - - - - May be used to represent additional information that is not part of the basic definition of the resource. In order to make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. - - - - - May be used to represent additional information that is not part of the basic definition of the resource, and that modifies the understanding of the element that contains it. Usually modifier elements provide negation or qualification. In order to make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. - - - - - - - - - - - The value is not known - - - - - The source human does not know the value - - - - - There is reason to expect (from the workflow) that the value may become known - - - - - The workflow didn't lead to this value being known - - - - - The information is not available due to security, privacy or related reasons - - - - - The source system wasn't capable of supporting this element - - - - - The content of the data is represented in the resource narrative - - - - - Some system or workflow process error means that the information is not available - - - - - - - - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - - - Male - - - - - Female - - - - - Other - - - - - Unknown - - - - - - - - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - - - Boolean true - - - - - Boolean false - - - - - The content is greater than zero, but too small to be quantified - - - - - The specific quantity is not known, but is known to be non-zero and is not specified because it makes up the bulk of the material - - - - - The value is no longer available - - - - - The are no known applicable values in this context - - - - - - - - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - - - There is a variety of postal address formats defined around the world. This format defines a superset that is the basis for all addresses around the world. - - - - - A duration (length of time) with a UCUM code - - - - - For referring to data content defined in other formats. - - - - - Base definition for all elements that are defined inside a resource - but not those in a data type. - - - - - A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text. - - - - - A reference to a code defined by a terminology system. - - - - - Details for All kinds of technology mediated contact points for a person or organization, including telephone, email, etc. - - - - - A count of a discrete element (no unit) - - - - - A measure of distance - - - - - A length of time - - - - - Base definition for all elements in a resource. - - - - - Captures constraints on each element within the resource, profile, or extension. - - - - - Optional Extensions Element - found in all resources. - - - - - A human's name with the ability to identify parts and usage. - - - - - A technical identifier - identifies some entity uniquely and unambiguously. - - - - - The metadata about a resource. This is content in the resource that is maintained by the infrastructure. Changes to the content may not always be associated with version changes to the resource. - - - - - An amount of money. With regard to precision, see [[X]] - - - - - A human-readable formatted text, including images. - - - - - A time period defined by a start and end date and optionally time. - - - - - A measured amount (or an amount that can potentially be measured). Note that measured amounts include amounts that are not precisely quantified, including amounts involving arbitrary units and floating currencies. - - - - - A set of ordered Quantities defined by a low and high limit. - - - - - A relationship of two Quantity values - expressed as a numerator and a denominator. - - - - - A reference from one resource to another. - - - - - A series of measurements taken by a device, with upper and lower limits. There may be more than one dimension in the data. - - - - - An XML digital signature along with supporting context. - - - - - Specifies an event that may occur multiple times. Timing schedules are used to record when things are expected or requested to occur. The most common usage is in dosage instructions for medications. They are also used when planning care of various kinds. - - - - - A stream of bytes - - - - - Value of "true" or "false" - - - - - A string which has at least one character and no leading or trailing whitespace and where there is no whitespace other than single spaces in the contents - - - - - A date, or partial date (e.g. just year or year + month). There is no time zone. The format is a union of the schema types gYear, gYearMonth and date. Dates SHALL be valid dates. - - - - - A date, date-time or partial date (e.g. just year or year + month). If hours and minutes are specified, a time zone SHALL be populated. The format is a union of the schema types gYear, gYearMonth, date and dateTime. Seconds must be provided due to schema type constraints but may be zero-filled and may be ignored. Dates SHALL be valid dates. - - - - - A rational number with implicit precision - - - - - Any combination of lowercase letters, numerals, "-" and ".", with a length limit of 36 characters. (This might be an integer, an unprefixed OID, UUID or any other identifier pattern that meets these constraints.) Systems SHALL send ids as lower-case but SHOULD interpret them case-insensitively. - - - - - An instant in time - known at least to the second - - - - - A whole number - - - - - An oid represented as a URI - - - - - A sequence of Unicode characters - - - - - A time during the day, with no date specified - - - - - String of characters used to identify a name or a resource - - - - - A UUID, represented as a URI - - - - - - - - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - - - The Encounter has not yet started. - - - - - The Patient is present for the encounter, however is not currently meeting with a practitioner. - - - - - The Encounter has begun and the patient is present / the practitioner and the patient are meeting. - - - - - The Encounter has begun, but the patient is temporarily on leave. - - - - - The Encounter has ended. - - - - - The Encounter has ended before it has begun. - - - - - - - - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - - - - - - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - - - Change the status of a Medication Administration to show that it is complete. - - - - - Someone wishes to record that the record of administration of a medication is in error and should be ignored. - - - - - Indicates that a medication has been recorded against the patient's record. - - - - - Update a Medication Administration record. - - - - - Notification of a change to an administrative resource (either create or update). Note that there is no delete, though some administrative resources have status or period elements for this use. - - - - - Provide a diagnostic report, or update a previously provided diagnostic report. - - - - - Provide a simple observation or update a previously provided simple observation. - - - - - Notification that two patient records actually identify the same patient. - - - - - Notification that previous advice that two patient records concern the same patient is now considered incorrect. - - - - - The definition of a value set is used to create a simple collection of codes suitable for use for data entry or validation. An expanded value set will be returned, or an error message. - - - - - - - - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - - - This resource is still under development - - - - - This resource is ready for normal use - - - - - This resource has been withdrawn or superceded and should no longer be used - - - - - - - - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - - - This Questionnaire is not ready for official use. - - - - - This Questionnaire is ready for use. - - - - - This Questionnaire should no longer be used to gather data. - - - - - - - - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - - - This is the current reference for this document. - - - - - This reference has been superseded by another reference. - - - - - This reference was created in error. - - - - - - - - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - - - The processing completed without errors. - - - - - The processing identified with errors. - - - - - - - - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - - - Display the note. - - - - - Print the note on the form. - - - - - Print the note for the operator. - - - - - - - - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - - - Search parameter SHALL be a number (a whole number, or a decimal). - - - - - Search parameter is on a date/time. The date format is the standard XML format, though other formats may be supported. - - - - - Search parameter is a simple string, like a name part. Search is case-insensitive and accent-insensitive. May match just the start of a string. String parameters may contain spaces. - - - - - Search parameter on a coded element or identifier. May be used to search through the text, displayname, code and code/codesystem (for codes) and label, system and key (for identifier). Its value is either a string or a pair of namespace and value, separated by a "|", depending on the modifier used. - - - - - A reference to another resource. - - - - - A composite search parameter that combines a search on two values together. - - - - - A search parameter that searches on a quantity. - - - - - A search parameter that searches on a URI (RFC 3986). - - - - - - - - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - - - There is a variety of postal address formats defined around the world. This format defines a superset that is the basis for all addresses around the world. - - - - - A duration (length of time) with a UCUM code - - - - - For referring to data content defined in other formats. - - - - - Base definition for all elements that are defined inside a resource - but not those in a data type. - - - - - A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text. - - - - - A reference to a code defined by a terminology system. - - - - - Details for All kinds of technology mediated contact points for a person or organization, including telephone, email, etc. - - - - - A count of a discrete element (no unit) - - - - - A measure of distance - - - - - A length of time - - - - - Base definition for all elements in a resource. - - - - - Captures constraints on each element within the resource, profile, or extension. - - - - - Optional Extensions Element - found in all resources. - - - - - A human's name with the ability to identify parts and usage. - - - - - A technical identifier - identifies some entity uniquely and unambiguously. - - - - - The metadata about a resource. This is content in the resource that is maintained by the infrastructure. Changes to the content may not always be associated with version changes to the resource. - - - - - An amount of money. With regard to precision, see [[X]] - - - - - A human-readable formatted text, including images. - - - - - A time period defined by a start and end date and optionally time. - - - - - A measured amount (or an amount that can potentially be measured). Note that measured amounts include amounts that are not precisely quantified, including amounts involving arbitrary units and floating currencies. - - - - - A set of ordered Quantities defined by a low and high limit. - - - - - A relationship of two Quantity values - expressed as a numerator and a denominator. - - - - - A reference from one resource to another. - - - - - A series of measurements taken by a device, with upper and lower limits. There may be more than one dimension in the data. - - - - - An XML digital signature along with supporting context. - - - - - Specifies an event that may occur multiple times. Timing schedules are used to record when things are expected or requested to occur. The most common usage is in dosage instructions for medications. They are also used when planning care of various kinds. - - - - - A stream of bytes - - - - - Value of "true" or "false" - - - - - A string which has at least one character and no leading or trailing whitespace and where there is no whitespace other than single spaces in the contents - - - - - A date, or partial date (e.g. just year or year + month). There is no time zone. The format is a union of the schema types gYear, gYearMonth and date. Dates SHALL be valid dates. - - - - - A date, date-time or partial date (e.g. just year or year + month). If hours and minutes are specified, a time zone SHALL be populated. The format is a union of the schema types gYear, gYearMonth, date and dateTime. Seconds must be provided due to schema type constraints but may be zero-filled and may be ignored. Dates SHALL be valid dates. - - - - - A rational number with implicit precision - - - - - Any combination of lowercase letters, numerals, "-" and ".", with a length limit of 36 characters. (This might be an integer, an unprefixed OID, UUID or any other identifier pattern that meets these constraints.) Systems SHALL send ids as lower-case but SHOULD interpret them case-insensitively. - - - - - An instant in time - known at least to the second - - - - - A whole number - - - - - An oid represented as a URI - - - - - A sequence of Unicode characters - - - - - A time during the day, with no date specified - - - - - String of characters used to identify a name or a resource - - - - - A UUID, represented as a URI - - - - - Prospective warnings of potential issues when providing care to the patient. - - - - - Risk of harmful or undesirable, physiological response which is unique to an individual and associated with exposure to a substance. - - - - - A booking of a healthcare event among patient(s), practitioner(s), related person(s) and/or device(s) for a specific date/time. This may result in one or more Encounter(s). - - - - - A reply to an appointment request for a patient and/or practitioner(s), such as a confirmation or rejection. - - - - - A record of an event made for purposes of maintaining a security log. Typical uses include detection of intrusion attempts and monitoring for inappropriate usage. - - - - - Basic is used for handling concepts not yet defined in FHIR, narrative-only resources that don't map to an existing resource, and custom resources not appropriate for inclusion in the FHIR specification. - - - - - A binary resource can contain any content, whether text, image, pdf, zip archive, etc. - - - - - Record details about the anatomical location of a specimen or body part, including precise localisation information. This resource may be used when a coded concept does not provide the necessary detail needed for the use case. - - - - - A container for a collection of resources. - - - - - Describes the intention of how one or more practitioners intend to deliver care for a particular patient for a period of time, possibly limited to care for a specific condition or set of conditions. - - - - - Describes the intention of how one or more practitioners intend to deliver care for a particular patient for a period of time, possibly limited to care for a specific condition or set of conditions. - - - - - A provider issued list of services and products provided, or to be provided, to a patient which is provided to an insurer for payment recovery. - - - - - This resource provides the adjudication details from the processing of a Claim resource. - - - - - A record of a clinical assessment performed to determine what problem(s) may affect the patient and before planning the treatments or management strategies that are best to manage a patient's condition. Assessments are often 1:1 with a clinical consultation / encounter, but this varies greatly depending on the clinical workflow. This resource is called "ClinicalImpression" rather than "ClinicalAssessment" to avoid confusion with the recording of assessment tools such as Apgar score. - - - - - An occurrence of information being transmitted. E.g., an alert that was sent to a responsible provider, a public health agency was notified about a reportable condition. - - - - - A request to convey information. E.g., the CDS system proposes that an alert be sent to a responsible provider, the CDS system proposes that the public health agency be notified about a reportable condition. - - - - - A set of healthcare-related information that is assembled together into a single logical document that provides a single coherent statement of meaning, establishes its own context and that has clinical attestation with regard to who is making the statement. - - - - - A statement of relationships from one set of concepts to one or more other concepts - either code systems or data elements, or classes in class models. - - - - - Use to record detailed information about conditions, problems or diagnoses recognized by a clinician. There are many uses including: recording a Diagnosis during an Encounter; populating a problem List or a Summary Statement, such as a Discharge Summary. - - - - - A conformance statement is a set of requirements for a desired implementation or a description of how a target application fulfills those requirements in a particular implementation. - - - - - A formal agreement between parties regarding the conduct of business, exchange of information or other matters. - - - - - Indicates an actual or potential clinical issue with or between one or more active or proposed clinical actions for a patient. E.g. Drug-drug interaction, Ineffective treatment frequency, Procedure-condition conflict, etc. - - - - - Financial instrument which may be used to pay for or reimburse for health care products and services. - - - - - The formal description of a single piece of information that can be gathered and reported. - - - - - This resource identifies an instance of a manufactured thing that is used in the provision of healthcare without being substantially changed through that activity. The device may be a machine, an insert, a computer, an application, etc. This includes durable (reusable) medical equipment as well as disposable equipment used for diagnostic, treatment, and research for healthcare and public health. - - - - - Describes the characteristics, operational status and capabilities of a medical-related component of a medical device. - - - - - Describes a measurement, calculation or setting capability of a medical device. - - - - - Represents a request for a patient to employ a medical device. The device may be an implantable device, or an external assistive device, such as a walker. - - - - - A record of a device being used by a patient where the record is the result of a report from the patient or another clinician. - - - - - A record of a request for a diagnostic investigation service to be performed. - - - - - The findings and interpretation of diagnostic tests performed on patients, groups of patients, devices, and locations, and/or specimens derived from these. The report includes clinical context such as requesting and provider information, and some mix of atomic results, images, textual and coded interpretation, and formatted representation of diagnostic reports. - - - - - A manifest that defines a set of documents. - - - - - A reference to a document. - - - - - This resource provides the insurance eligibility details from the insurer regarding a specified coverage and optionally some class of service. - - - - - This resource provides eligibility and plan details from the processing of an Eligibility resource. - - - - - An interaction between a patient and healthcare provider(s) for the purpose of providing healthcare service(s) or assessing the health status of a patient. - - - - - This resource provides the insurance Enrollment details to the insurer regarding a specified coverage. - - - - - This resource provides Enrollment and plan details from the processing of an Enrollment resource. - - - - - An association between a patient and an organization / healthcare provider(s) during which time encounters may occur. The managing organization assumes a level of responsibility for the patient during this time. - - - - - This resource provides: the claim details; adjudication details from the processing of a Claim; and optionally account balance information, for informing the subscriber of the benefits provided. - - - - - Significant health events and conditions for people related to the subject relevant in the context of care for the subject. - - - - - Describes the intended objective(s) of patient care, for example, weight loss, restoring an activity of daily living, etc. - - - - - Represents a defined collection of entities that may be discussed or acted upon collectively but which are not expected to act collectively and are not formally or legally recognized. I.e. A collection of entities that isn't an Organization. - - - - - The details of a Healthcare Service available at a location. - - - - - A set of DICOM SOP Instances of a patient, selected for some application purpose, e.g., quality assurance, teaching, conference, consulting, etc. Objects selected can be from different studies, but must be of the same patient. - - - - - Representation of the content produced in a DICOM imaging study. A study comprises a set of Series, each of which includes a set of Service-Object Pair Instances (SOP Instances - images or other data) acquired or produced in a common context. A Series is of only one modality (e.g., X-ray, CT, MR, ultrasound), but a Study may have multiple Series of different modalities. - - - - - Immunization event information. - - - - - A patient's point-of-time immunization status and recommendation with optional supporting justification. - - - - - A set of information summarized from a list of other resources. - - - - - Details and position information for a physical place where services are provided and resources and participants may be stored, found, contained or accommodated. - - - - - A photo, video, or audio recording acquired or used in healthcare. The actual content may be inline or provided by direct reference. - - - - - Primarily used for identification and definition of Medication, but also covers ingredients and packaging. - - - - - Describes the event of a patient consuming or otherwise being administered a medication. This may be as simple as swallowing a tablet or it may be a long running infusion. Related resources tie this event to the authorizing prescription, and the specific encounter between patient and health care practitioner. - - - - - Dispensing a medication to a named patient. This includes a description of the supply provided and the instructions for administering the medication. - - - - - An order for both supply of the medication and the instructions for administration of the medicine to a patient. - - - - - A record of medication being taken by a patient, or that the medication has been given to a patient where the record is the result of a report from the patient or another clinician. - - - - - The header for a message exchange that is either requesting or responding to an action. The Reference(s) that are the subject of the action as well as other Information related to the action are typically transmitted in a bundle in which the MessageHeader resource instance is the first resource in the bundle. - - - - - A curated namespace that issues unique symbols within that namespace for the identification of concepts, people, devices, etc. Represents a "System" used within the Identifier and Coding data types. - - - - - A request to supply a diet, formula feeding (enteral) or oral nutritional supplement to a patient/resident. - - - - - Measurements and simple assertions made about a patient, device or other subject. - - - - - A formal computable definition of an operation (on the RESTful interface) or a named query (using the search interaction). - - - - - A collection of error, warning or information messages that result from a system action. - - - - - A request to perform an action. - - - - - A response to an order. - - - - - A formally or informally recognized grouping of people or organizations formed for the purpose of achieving some form of collective action. Includes companies, institutions, corporations, departments, community groups, healthcare practice groups, etc. - - - - - Other is a conformant for handling resource concepts not yet defined for FHIR or outside HL7's scope of interest. - - - - - Demographics and other administrative information about an individual or animal receiving care or other health-related services. - - - - - This resource provides the status of the payment for goods and services rendered, and the request and response resource references. - - - - - This resource provides payment details and claim references supporting a bulk payment. - - - - - Demographics and administrative information about a person independent of a specific health-related context. - - - - - A person who is directly or indirectly involved in the provisioning of healthcare. - - - - - An action that is performed on a patient. This can be a physical 'thing' like an operation, or less invasive like counseling or hypnotherapy. - - - - - A request for a procedure to be performed. May be a proposal or an order. - - - - - This resource provides the target, request and response, and action details for an action to be performed by the target on or about existing resources. - - - - - This resource provides processing status, errors and notes from the processing of a resource. - - - - - Provenance of a resource is a record that describes entities and processes involved in producing and delivering or otherwise influencing that resource. Provenance provides a critical foundation for assessing authenticity, enabling trust, and allowing reproducibility. Provenance assertions are a form of contextual metadata and can themselves become important records with their own provenance. Provenance statement indicates clinical significance in terms of confidence in authenticity, reliability, and trustworthiness, integrity, and stage in lifecycle (e.g., Document Completion - has the artifact been legally authenticated), all of which may impact Security, Privacy, and Trust policies. - - - - - A structured set of questions intended to guide the collection of answers. The questions are ordered and grouped into coherent subsets, corresponding to the structure of the grouping of the underlying questions. - - - - - A structured set of questions and their answers. The questions are ordered and grouped into coherent subsets, corresponding to the structure of the grouping of the underlying questions. - - - - - Used to record and send details about a request for referral service or transfer of a patient to the care of another provider or provider organisation. - - - - - Information about a person that is involved in the care for a patient, but who is not the target of healthcare, nor has a formal responsibility in the care process. - - - - - An assessment of the likely outcome(s) for a patient or other subject as well as the likelihood of each outcome. - - - - - A container for slot(s) of time that may be available for booking appointments. - - - - - A Search Parameter that defines a named search item that can be used to search/filter on a resource. - - - - - A slot of time on a schedule that may be available for booking appointments. - - - - - Sample for analysis. - - - - - A definition of a FHIR structure. This resource is used to describe the underlying resources, data types defined in FHIR, and also for describing extensions, and constraints on resources and data types. - - - - - The subscription resource is used to define a push based subscription from a server to another system. Once a subscription is registered with the server, the server checks every resource that is created or updated, and if the resource matches the given criteria, it sends a message on the defined "channel" so that another system is able to take an appropriate action. - - - - - A homogeneous material with a definite composition. - - - - - A supply - a request for something, and provision of what is supplied. - - - - - This resource provides the supporting information for a process, for example clinical or financial information related to a claim or pre-authorization. - - - - - A value set specifies a set of codes drawn from one or more code systems. - - - - - An authorization for the supply of glasses and/or contact lenses to a patient. - - - - - - - - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - - - An encounter during which the patient is hospitalized and stays overnight. - - - - - An encounter during which the patient is not hospitalized overnight. - - - - - An encounter where the patient visits the practitioner in his/her office, e.g. a G.P. visit. - - - - - An encounter where the patient needs urgent care. - - - - - An encounter where the practitioner visits the patient at his/her home. - - - - - An encounter taking place outside the regular environment for giving care. - - - - - An encounter where the patient needs more prolonged treatment or investigations than outpatients, but who do not need to stay in the hospital overnight. - - - - - An encounter that takes place where the patient and practitioner do not physically meet but use electronic means for contact. - - - - - Any other encounter type that is not described by one of the other values. Where this is used it is expected that an implementer will include an extension value to define what the actual other type is. - - - - - - - - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - - - The person authenticated the content in their personal capacity. - - - - - The person authenticated the content in their professional capacity. - - - - - The person authenticated the content and accepted legal responsibility for its content. - - - - - The organization authenticated the content as consistent with their policies and procedures. - - - - - - - - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - - - - - - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - - - Prospective warnings of potential issues when providing care to the patient. - - - - - Risk of harmful or undesirable, physiological response which is unique to an individual and associated with exposure to a substance. - - - - - A booking of a healthcare event among patient(s), practitioner(s), related person(s) and/or device(s) for a specific date/time. This may result in one or more Encounter(s). - - - - - A reply to an appointment request for a patient and/or practitioner(s), such as a confirmation or rejection. - - - - - A record of an event made for purposes of maintaining a security log. Typical uses include detection of intrusion attempts and monitoring for inappropriate usage. - - - - - Basic is used for handling concepts not yet defined in FHIR, narrative-only resources that don't map to an existing resource, and custom resources not appropriate for inclusion in the FHIR specification. - - - - - A binary resource can contain any content, whether text, image, pdf, zip archive, etc. - - - - - Record details about the anatomical location of a specimen or body part, including precise localisation information. This resource may be used when a coded concept does not provide the necessary detail needed for the use case. - - - - - A container for a collection of resources. - - - - - Describes the intention of how one or more practitioners intend to deliver care for a particular patient for a period of time, possibly limited to care for a specific condition or set of conditions. - - - - - Describes the intention of how one or more practitioners intend to deliver care for a particular patient for a period of time, possibly limited to care for a specific condition or set of conditions. - - - - - A provider issued list of services and products provided, or to be provided, to a patient which is provided to an insurer for payment recovery. - - - - - This resource provides the adjudication details from the processing of a Claim resource. - - - - - A record of a clinical assessment performed to determine what problem(s) may affect the patient and before planning the treatments or management strategies that are best to manage a patient's condition. Assessments are often 1:1 with a clinical consultation / encounter, but this varies greatly depending on the clinical workflow. This resource is called "ClinicalImpression" rather than "ClinicalAssessment" to avoid confusion with the recording of assessment tools such as Apgar score. - - - - - An occurrence of information being transmitted. E.g., an alert that was sent to a responsible provider, a public health agency was notified about a reportable condition. - - - - - A request to convey information. E.g., the CDS system proposes that an alert be sent to a responsible provider, the CDS system proposes that the public health agency be notified about a reportable condition. - - - - - A set of healthcare-related information that is assembled together into a single logical document that provides a single coherent statement of meaning, establishes its own context and that has clinical attestation with regard to who is making the statement. - - - - - A statement of relationships from one set of concepts to one or more other concepts - either code systems or data elements, or classes in class models. - - - - - Use to record detailed information about conditions, problems or diagnoses recognized by a clinician. There are many uses including: recording a Diagnosis during an Encounter; populating a problem List or a Summary Statement, such as a Discharge Summary. - - - - - A conformance statement is a set of requirements for a desired implementation or a description of how a target application fulfills those requirements in a particular implementation. - - - - - A formal agreement between parties regarding the conduct of business, exchange of information or other matters. - - - - - Indicates an actual or potential clinical issue with or between one or more active or proposed clinical actions for a patient. E.g. Drug-drug interaction, Ineffective treatment frequency, Procedure-condition conflict, etc. - - - - - Financial instrument which may be used to pay for or reimburse for health care products and services. - - - - - The formal description of a single piece of information that can be gathered and reported. - - - - - This resource identifies an instance of a manufactured thing that is used in the provision of healthcare without being substantially changed through that activity. The device may be a machine, an insert, a computer, an application, etc. This includes durable (reusable) medical equipment as well as disposable equipment used for diagnostic, treatment, and research for healthcare and public health. - - - - - Describes the characteristics, operational status and capabilities of a medical-related component of a medical device. - - - - - Describes a measurement, calculation or setting capability of a medical device. - - - - - Represents a request for a patient to employ a medical device. The device may be an implantable device, or an external assistive device, such as a walker. - - - - - A record of a device being used by a patient where the record is the result of a report from the patient or another clinician. - - - - - A record of a request for a diagnostic investigation service to be performed. - - - - - The findings and interpretation of diagnostic tests performed on patients, groups of patients, devices, and locations, and/or specimens derived from these. The report includes clinical context such as requesting and provider information, and some mix of atomic results, images, textual and coded interpretation, and formatted representation of diagnostic reports. - - - - - A manifest that defines a set of documents. - - - - - A reference to a document. - - - - - This resource provides the insurance eligibility details from the insurer regarding a specified coverage and optionally some class of service. - - - - - This resource provides eligibility and plan details from the processing of an Eligibility resource. - - - - - An interaction between a patient and healthcare provider(s) for the purpose of providing healthcare service(s) or assessing the health status of a patient. - - - - - This resource provides the insurance Enrollment details to the insurer regarding a specified coverage. - - - - - This resource provides Enrollment and plan details from the processing of an Enrollment resource. - - - - - An association between a patient and an organization / healthcare provider(s) during which time encounters may occur. The managing organization assumes a level of responsibility for the patient during this time. - - - - - This resource provides: the claim details; adjudication details from the processing of a Claim; and optionally account balance information, for informing the subscriber of the benefits provided. - - - - - Significant health events and conditions for people related to the subject relevant in the context of care for the subject. - - - - - Describes the intended objective(s) of patient care, for example, weight loss, restoring an activity of daily living, etc. - - - - - Represents a defined collection of entities that may be discussed or acted upon collectively but which are not expected to act collectively and are not formally or legally recognized. I.e. A collection of entities that isn't an Organization. - - - - - The details of a Healthcare Service available at a location. - - - - - A set of DICOM SOP Instances of a patient, selected for some application purpose, e.g., quality assurance, teaching, conference, consulting, etc. Objects selected can be from different studies, but must be of the same patient. - - - - - Representation of the content produced in a DICOM imaging study. A study comprises a set of Series, each of which includes a set of Service-Object Pair Instances (SOP Instances - images or other data) acquired or produced in a common context. A Series is of only one modality (e.g., X-ray, CT, MR, ultrasound), but a Study may have multiple Series of different modalities. - - - - - Immunization event information. - - - - - A patient's point-of-time immunization status and recommendation with optional supporting justification. - - - - - A set of information summarized from a list of other resources. - - - - - Details and position information for a physical place where services are provided and resources and participants may be stored, found, contained or accommodated. - - - - - A photo, video, or audio recording acquired or used in healthcare. The actual content may be inline or provided by direct reference. - - - - - Primarily used for identification and definition of Medication, but also covers ingredients and packaging. - - - - - Describes the event of a patient consuming or otherwise being administered a medication. This may be as simple as swallowing a tablet or it may be a long running infusion. Related resources tie this event to the authorizing prescription, and the specific encounter between patient and health care practitioner. - - - - - Dispensing a medication to a named patient. This includes a description of the supply provided and the instructions for administering the medication. - - - - - An order for both supply of the medication and the instructions for administration of the medicine to a patient. - - - - - A record of medication being taken by a patient, or that the medication has been given to a patient where the record is the result of a report from the patient or another clinician. - - - - - The header for a message exchange that is either requesting or responding to an action. The Reference(s) that are the subject of the action as well as other Information related to the action are typically transmitted in a bundle in which the MessageHeader resource instance is the first resource in the bundle. - - - - - A curated namespace that issues unique symbols within that namespace for the identification of concepts, people, devices, etc. Represents a "System" used within the Identifier and Coding data types. - - - - - A request to supply a diet, formula feeding (enteral) or oral nutritional supplement to a patient/resident. - - - - - Measurements and simple assertions made about a patient, device or other subject. - - - - - A formal computable definition of an operation (on the RESTful interface) or a named query (using the search interaction). - - - - - A collection of error, warning or information messages that result from a system action. - - - - - A request to perform an action. - - - - - A response to an order. - - - - - A formally or informally recognized grouping of people or organizations formed for the purpose of achieving some form of collective action. Includes companies, institutions, corporations, departments, community groups, healthcare practice groups, etc. - - - - - Other is a conformant for handling resource concepts not yet defined for FHIR or outside HL7's scope of interest. - - - - - Demographics and other administrative information about an individual or animal receiving care or other health-related services. - - - - - This resource provides the status of the payment for goods and services rendered, and the request and response resource references. - - - - - This resource provides payment details and claim references supporting a bulk payment. - - - - - Demographics and administrative information about a person independent of a specific health-related context. - - - - - A person who is directly or indirectly involved in the provisioning of healthcare. - - - - - An action that is performed on a patient. This can be a physical 'thing' like an operation, or less invasive like counseling or hypnotherapy. - - - - - A request for a procedure to be performed. May be a proposal or an order. - - - - - This resource provides the target, request and response, and action details for an action to be performed by the target on or about existing resources. - - - - - This resource provides processing status, errors and notes from the processing of a resource. - - - - - Provenance of a resource is a record that describes entities and processes involved in producing and delivering or otherwise influencing that resource. Provenance provides a critical foundation for assessing authenticity, enabling trust, and allowing reproducibility. Provenance assertions are a form of contextual metadata and can themselves become important records with their own provenance. Provenance statement indicates clinical significance in terms of confidence in authenticity, reliability, and trustworthiness, integrity, and stage in lifecycle (e.g., Document Completion - has the artifact been legally authenticated), all of which may impact Security, Privacy, and Trust policies. - - - - - A structured set of questions intended to guide the collection of answers. The questions are ordered and grouped into coherent subsets, corresponding to the structure of the grouping of the underlying questions. - - - - - A structured set of questions and their answers. The questions are ordered and grouped into coherent subsets, corresponding to the structure of the grouping of the underlying questions. - - - - - Used to record and send details about a request for referral service or transfer of a patient to the care of another provider or provider organisation. - - - - - Information about a person that is involved in the care for a patient, but who is not the target of healthcare, nor has a formal responsibility in the care process. - - - - - An assessment of the likely outcome(s) for a patient or other subject as well as the likelihood of each outcome. - - - - - A container for slot(s) of time that may be available for booking appointments. - - - - - A Search Parameter that defines a named search item that can be used to search/filter on a resource. - - - - - A slot of time on a schedule that may be available for booking appointments. - - - - - Sample for analysis. - - - - - A definition of a FHIR structure. This resource is used to describe the underlying resources, data types defined in FHIR, and also for describing extensions, and constraints on resources and data types. - - - - - The subscription resource is used to define a push based subscription from a server to another system. Once a subscription is registered with the server, the server checks every resource that is created or updated, and if the resource matches the given criteria, it sends a message on the defined "channel" so that another system is able to take an appropriate action. - - - - - A homogeneous material with a definite composition. - - - - - A supply - a request for something, and provision of what is supplied. - - - - - This resource provides the supporting information for a process, for example clinical or financial information related to a claim or pre-authorization. - - - - - A value set specifies a set of codes drawn from one or more code systems. - - - - - An authorization for the supply of glasses and/or contact lenses to a patient. - - - - - - - - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - - - This is a preliminary composition or document (also known as initial or interim). The content may be incomplete or unverified. - - - - - This version of the composition is complete and verified by an appropriate person and no further work is planned. Any subsequent updates would be on a new version of the composition. - - - - - The composition or document has been modified subsequent to being released as "final", and is complete and verified by an authorized person. The modifications added new information to the composition or document, but did not revise existing content. - - - - - The composition or document has been modified subsequent to being released as "final", and is complete and verified by an authorized person. - - - - - The composition or document was originally created/issued in error, and this is an amendment that marks that the entire series should not be considered as valid. - - - - - - - - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - - - - - - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/fhir-invariants.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/fhir-invariants.sch index 1d1f1cdb0f9..341129bee7a 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/fhir-invariants.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/fhir-invariants.sch @@ -8,998 +8,6 @@ global-1: All FHIR elements must have a @value or children - - Condition - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - qty-3: If a code for the units is present, the system SHALL also be present - - - per-1: If present, start SHALL have a lower value than end - - - rng-2: If present, low SHALL have a lower value than high - rng-3: Quantity values cannot have a comparator when used in a Range - - - qty-3: If a code for the units is present, the system SHALL also be present - - - qty-3: If a code for the units is present, the system SHALL also be present - - - qty-3: If a code for the units is present, the system SHALL also be present - - - per-1: If present, start SHALL have a lower value than end - - - rng-2: If present, low SHALL have a lower value than high - rng-3: Quantity values cannot have a comparator when used in a Range - - - qty-3: If a code for the units is present, the system SHALL also be present - - - qty-3: If a code for the units is present, the system SHALL also be present - - - con-1: Stage SHALL have summary or assessment - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - con-2: evidence SHALL have code or details - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - con-3: location SHALL have code or details - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - con-4: Relationship SHALL have either a code or a target - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - con-5: Relationship SHALL have either a code or a target - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - - Supply - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - qty-3: If a code for the units is present, the system SHALL also be present - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - - ProcedureRequest - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - tim-3: Either frequency or when can exist, not both - tim-1: if there's a duration, there needs to be duration units - tim-2: if there's a period, there needs to be duration units - tim-6: If there's a periodMax, there must be a period - tim-7: If there's a durationMax, there must be a duration - - - per-1: If present, start SHALL have a lower value than end - - - tim-4: duration SHALL be a non-negative value - - - tim-5: period SHALL be a non-negative value - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - - DeviceComponent - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - - DeviceMetric - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - tim-3: Either frequency or when can exist, not both - tim-1: if there's a duration, there needs to be duration units - tim-2: if there's a period, there needs to be duration units - tim-6: If there's a periodMax, there must be a period - tim-7: If there's a durationMax, there must be a duration - - - per-1: If present, start SHALL have a lower value than end - - - tim-4: duration SHALL be a non-negative value - - - tim-5: period SHALL be a non-negative value - - - - Communication - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - att-1: It the Attachment has data, it SHALL have a contentType - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - - Organization - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - org-1: The organization SHALL at least have a name or an id, and possibly more than one - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - org-3: The telecom of an organization can never be of use 'home' - - - cpt-2: A system is required if a value is provided. - - - per-1: If present, start SHALL have a lower value than end - - - org-2: An address of an organization can never be of use 'home' - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - cpt-2: A system is required if a value is provided. - - - per-1: If present, start SHALL have a lower value than end - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - - ProcessRequest - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - per-1: If present, start SHALL have a lower value than end - - - - Group - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - grp-4: Can't have more members associated with the group than the value specified for "quantity" - grp-1: Can only have members if group is "actual" - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - qty-3: If a code for the units is present, the system SHALL also be present - - - rng-2: If present, low SHALL have a lower value than high - rng-3: Quantity values cannot have a comparator when used in a Range - - - qty-3: If a code for the units is present, the system SHALL also be present - - - qty-3: If a code for the units is present, the system SHALL also be present - - - grp-3: Member resource types SHALL agree with group type - - - ref-1: SHALL have a local reference if the resource is provided inline - - - - ValueSet - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - vsd-7: A defined code system (if present) SHALL have a different identifier to the value set itself - vsd-5: Value set SHALL contain either a define, a compose, or an expansion element - vsd-2: A value set with only one import SHALL also have an include and/or an exclude unless the value set defines its own codes - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - cpt-2: A system is required if a value is provided. - - - per-1: If present, start SHALL have a lower value than end - - - vsd-8: Codes must be unique - vsd-3: Within a code system definition, all the codes SHALL be unique - - - cod-1: If a valueSet is provided, a system URI Is required - - - vsd-1: A value set composition SHALL have an include or an import - - - vsd-9: Must have a code if not abstract - vsd-6: SHALL have a code or a display - vsd-10: Must have a system if a code is present - - - - Coverage - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - per-1: If present, start SHALL have a lower value than end - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - - ImmunizationRecommendation - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - Appointment @@ -1009,15 +17,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -1031,6 +39,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end @@ -1066,170 +80,1106 @@ - MedicationDispense - + ReferralRequest + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content - + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - - mdd-1: whenHandedOver cannot be before whenPrepared - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - + ccc-2: Only one coding in a set can be chosen directly by the user - + cod-1: If a valueSet is provided, a system URI Is required - - qty-3: If a code for the units is present, the system SHALL also be present - - - qty-3: If a code for the units is present, the system SHALL also be present - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - + per-1: If present, start SHALL have a lower value than end - - tim-3: Either frequency or when can exist, not both - tim-1: if there's a duration, there needs to be duration units - tim-2: if there's a period, there needs to be duration units + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + per-1: If present, start SHALL have a lower value than end + + + + Provenance + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + per-1: If present, start SHALL have a lower value than end + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + + Questionnaire + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + que-2: The link ids for groups and questions must be unique within the questionnaire + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + cpt-2: A system is required if a value is provided. + + + per-1: If present, start SHALL have a lower value than end + + + que-1: Groups may either contain questions or groups but not both + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + + ExplanationOfBenefit + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + + DocumentManifest + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + att-1: It the Attachment has data, it SHALL have a contentType + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + + Specimen + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + per-1: If present, start SHALL have a lower value than end + + + qty-3: If a code for the units is present, the system SHALL also be present + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + qty-3: If a code for the units is present, the system SHALL also be present + + + qty-3: If a code for the units is present, the system SHALL also be present + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + + AllergyIntolerance + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + qty-3: If a code for the units is present, the system SHALL also be present + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + + CarePlan + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + cpl-3: Only provide a detail reference, or a simple detail summary + cpl-2: Quantity can only be specified if activity category is supply + cpl-1: DailyDose can only be specified if activity category is drug or food + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + tim-6: If there's a periodMax, there must be a period tim-7: If there's a durationMax, there must be a duration + tim-1: if there's a duration, there needs to be duration units + tim-2: if there's a period, there needs to be duration units + tim-3: Either frequency or when can exist, not both - + per-1: If present, start SHALL have a lower value than end - + tim-4: duration SHALL be a non-negative value - + tim-5: period SHALL be a non-negative value - + ccc-2: Only one coding in a set can be chosen directly by the user - + cod-1: If a valueSet is provided, a system URI Is required - - ccc-2: Only one coding in a set can be chosen directly by the user + + per-1: If present, start SHALL have a lower value than end - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - rng-2: If present, low SHALL have a lower value than high - rng-3: Quantity values cannot have a comparator when used in a Range - - - qty-3: If a code for the units is present, the system SHALL also be present - - - qty-3: If a code for the units is present, the system SHALL also be present - - - qty-3: If a code for the units is present, the system SHALL also be present - - - rat-1: numerator and denominator SHALL both be present, or both be absent. If both are absent, there SHALL be some extension present - - - qty-3: If a code for the units is present, the system SHALL also be present - - - qty-3: If a code for the units is present, the system SHALL also be present - - - rat-1: numerator and denominator SHALL both be present, or both be absent. If both are absent, there SHALL be some extension present - - - qty-3: If a code for the units is present, the system SHALL also be present - - - qty-3: If a code for the units is present, the system SHALL also be present - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - + ref-1: SHALL have a local reference if the resource is provided inline + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + qty-3: If a code for the units is present, the system SHALL also be present + + + qty-3: If a code for the units is present, the system SHALL also be present + + + + Goal + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + + StructureDefinition + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + sdf-8: In any snapshot or differential, all the elements except the first have to have a path that starts with the path of the first + "." + sdf-7: If the type is Resource or Type, the url has to start with "http://hl7.org/fhir/StructureDefinition/" and the tail must match the name + sdf-6: A structure must have either a differential, or a snapshot (or both) + sdf-5: If the type is 'extension' then the structure must have context information + sdf-4: A structure must have a base unless it’s type is 'abstract' + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + cpt-2: A system is required if a value is provided. + + + per-1: If present, start SHALL have a lower value than end + + + cod-1: If a valueSet is provided, a system URI Is required + + + sdf-2: Must have at a name or a uri (or both) + + + sdf-3: If a structure is a snapshot, then each element definition must have a formal definition, and cardinalities + sdf-1: Element paths must be unique - or not (LM) + + + eld-2: Min <= Max + eld-5: Either a namereference or a fixed value (but not both) is permitted + eld-7: Pattern may only be specified if there is one type + eld-6: Fixed value may only be specified if there is one type + eld-11: Binding can only be present for coded elements, string, and uri + eld-8: Pattern and value are mutually exclusive + eld-14: Constraints must be unique by key + eld-13: Types must be unique by the combination of code and profile + eld-16: default value and meaningWhenMissing are mutually exclusive + eld-15: Constraint names must be unique. + + + cod-1: If a valueSet is provided, a system URI Is required + + + eld-1: If there are no discriminators, there must be a definition + + + eld-3: Max SHALL be a number or "*" + + + eld-4: Aggregation may only be specified if one of the allowed types for the element is a resource + + + eld-10: provide either a reference or a description (or both) + eld-9: Example value sets are always extensible + + + eld-12: uri SHALL start with http:// or https:// + + + ref-1: SHALL have a local reference if the resource is provided inline + + + eld-2: Min <= Max + eld-5: Either a namereference or a fixed value (but not both) is permitted + eld-7: Pattern may only be specified if there is one type + eld-6: Fixed value may only be specified if there is one type + eld-11: Binding can only be present for coded elements, string, and uri + eld-8: Pattern and value are mutually exclusive + eld-14: Constraints must be unique by key + eld-13: Types must be unique by the combination of code and profile + eld-16: default value and meaningWhenMissing are mutually exclusive + eld-15: Constraint names must be unique. + + + cod-1: If a valueSet is provided, a system URI Is required + + + eld-1: If there are no discriminators, there must be a definition + + + eld-3: Max SHALL be a number or "*" + + + eld-4: Aggregation may only be specified if one of the allowed types for the element is a resource + + + eld-10: provide either a reference or a description (or both) + eld-9: Example value sets are always extensible + + + eld-12: uri SHALL start with http:// or https:// + + + ref-1: SHALL have a local reference if the resource is provided inline + + + + EnrollmentRequest + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + cod-1: If a valueSet is provided, a system URI Is required + + + + EpisodeOfCare + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + per-1: If present, start SHALL have a lower value than end + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + MedicationPrescription @@ -1240,15 +1190,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -1262,6 +1212,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end @@ -1299,11 +1255,11 @@ per-1: If present, start SHALL have a lower value than end - tim-3: Either frequency or when can exist, not both - tim-1: if there's a duration, there needs to be duration units - tim-2: if there's a period, there needs to be duration units tim-6: If there's a periodMax, there must be a period tim-7: If there's a durationMax, there must be a duration + tim-1: if there's a duration, there needs to be duration units + tim-2: if there's a period, there needs to be duration units + tim-3: Either frequency or when can exist, not both per-1: If present, start SHALL have a lower value than end @@ -1314,6 +1270,12 @@ tim-5: period SHALL be a non-negative value + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + ccc-2: Only one coding in a set can be chosen directly by the user @@ -1394,587 +1356,6 @@ cod-1: If a valueSet is provided, a system URI Is required - - Slot - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - - PaymentNotice - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - cod-1: If a valueSet is provided, a system URI Is required - - - - Contraindication - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - - AppointmentResponse - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - - MedicationStatement - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - mst-1: Reason not given is only permitted if wasNotGiven is true - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - mst-2: Reason for use is only permitted if wasNotGiven is false - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - mst-2: Reason for use is only permitted if wasNotGiven is false - - - ref-1: SHALL have a local reference if the resource is provided inline - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - tim-3: Either frequency or when can exist, not both - tim-1: if there's a duration, there needs to be duration units - tim-2: if there's a period, there needs to be duration units - tim-6: If there's a periodMax, there must be a period - tim-7: If there's a durationMax, there must be a duration - - - per-1: If present, start SHALL have a lower value than end - - - tim-4: duration SHALL be a non-negative value - - - tim-5: period SHALL be a non-negative value - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - qty-3: If a code for the units is present, the system SHALL also be present - - - rat-1: numerator and denominator SHALL both be present, or both be absent. If both are absent, there SHALL be some extension present - - - qty-3: If a code for the units is present, the system SHALL also be present - - - qty-3: If a code for the units is present, the system SHALL also be present - - - rat-1: numerator and denominator SHALL both be present, or both be absent. If both are absent, there SHALL be some extension present - - - qty-3: If a code for the units is present, the system SHALL also be present - - - qty-3: If a code for the units is present, the system SHALL also be present - - - - EpisodeOfCare - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - per-1: If present, start SHALL have a lower value than end - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - - Questionnaire - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - que-2: The link ids for groups and questions must be unique within the questionnaire - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - cpt-2: A system is required if a value is provided. - - - per-1: If present, start SHALL have a lower value than end - - - que-1: Groups may either contain questions or groups but not both - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - - Composition - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - cmp-1: A section must have either subsections or content - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - OperationOutcome @@ -1984,15 +1365,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -2014,464 +1395,516 @@ - Conformance - + Medication + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cnf-1: A Conformance statement SHALL have at least one of rest, messaging or document - cnf-2: A Conformance statement SHALL have at least one of description, software, or implementation - cnf-4: If there is more than one messaging element, endpoint must be specified for each one - cnf-5: The set of end points listed for messaging must be unique - cnf-7: The set of documents must be unique by the combination of profile & mode - cnf-8: There can only be one REST declaration per mode - - - cpt-2: A system is required if a value is provided. - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - cnf-10: A given query can only be described once per RESTful mode - cnf-9: A given resource can only be described once per RESTful mode - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - cnf-12: Search parameter names must be unique in the context of a resource - cnf-11: Operation codes must be unique in the context of a resource - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - cnf-3: Messaging end point is required (and is only permitted) when statement is for an implementation - cnf-6: The set of events per messaging endpoint must be unique by the combination of code & mode - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - - NamingSystem - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - nsd-2: Can't have more than one preferred identifier for a type - nsd-3: Can only have replacedBy if namingsystem is retired - nsd-1: Root systems cannot have uuid or sid identifiers - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - cpt-2: A system is required if a value is provided. - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - - Media - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - mda-1: Height can only be used for a photo or video - mda-2: Width can only be used for a photo or video - mda-4: Length can only be used for an audio or a video - mda-3: Frames can only be used for a photo - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - att-1: It the Attachment has data, it SHALL have a contentType - - - - Binary - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - - Other - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - - per-1: If present, start SHALL have a lower value than end + + ccc-2: Only one coding in a set can be chosen directly by the user - + + cod-1: If a valueSet is provided, a system URI Is required + + ref-1: SHALL have a local reference if the resource is provided inline - + ccc-2: Only one coding in a set can be chosen directly by the user - + cod-1: If a valueSet is provided, a system URI Is required - + ref-1: SHALL have a local reference if the resource is provided inline - - ref-1: SHALL have a local reference if the resource is provided inline + + rat-1: numerator and denominator SHALL both be present, or both be absent. If both are absent, there SHALL be some extension present - - - HealthcareService - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - cpt-2: A system is required if a value is provided. - - - per-1: If present, start SHALL have a lower value than end - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - - VisionPrescription - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - cod-1: If a valueSet is provided, a system URI Is required - - + qty-3: If a code for the units is present, the system SHALL also be present + + qty-3: If a code for the units is present, the system SHALL also be present + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + qty-3: If a code for the units is present, the system SHALL also be present + + + + Procedure + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + + List + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + lst-2: The deleted flag can only be used if the mode of the list is "changes" + lst-1: A list can only have an emptyReason if it is empty + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + + ConceptMap + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + cpt-2: A system is required if a value is provided. + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + cmd-1: If the map is narrower or inexact, there SHALL be some comments + + + + Subscription + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cpt-2: A system is required if a value is provided. + + + per-1: If present, start SHALL have a lower value than end + + + cod-1: If a valueSet is provided, a system URI Is required + + + + ValueSet + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + vsd-7: A defined code system (if present) SHALL have a different identifier to the value set itself + vsd-2: A value set with only one import SHALL also have an include and/or an exclude unless the value set defines its own codes + vsd-5: Value set SHALL contain either a define, a compose, or an expansion element + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + cpt-2: A system is required if a value is provided. + + + per-1: If present, start SHALL have a lower value than end + + + vsd-8: Codes must be unique + vsd-3: Within a code system definition, all the codes SHALL be unique + + + cod-1: If a valueSet is provided, a system URI Is required + + + vsd-1: A value set composition SHALL have an include or an import + + + vsd-6: SHALL have a code or a display + vsd-9: Must have a code if not abstract + vsd-10: Must have a system if a code is present + + + + OperationDefinition + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cpt-2: A system is required if a value is provided. + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + opd-1: Either a type must be provided, or parts + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + DocumentReference @@ -2482,15 +1915,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -2504,12 +1937,24 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end ref-1: SHALL have a local reference if the resource is provided inline + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end @@ -2582,6 +2027,12 @@ ref-1: SHALL have a local reference if the resource is provided inline + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end @@ -2592,6 +2043,105 @@ ref-1: SHALL have a local reference if the resource is provided inline + + Order + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ord-1: Provide a code or a schedule, but not both + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + tim-6: If there's a periodMax, there must be a period + tim-7: If there's a durationMax, there must be a duration + tim-1: if there's a duration, there needs to be duration units + tim-2: if there's a period, there needs to be duration units + tim-3: Either frequency or when can exist, not both + + + per-1: If present, start SHALL have a lower value than end + + + tim-4: duration SHALL be a non-negative value + + + tim-5: period SHALL be a non-negative value + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + Immunization @@ -2601,15 +2151,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -2623,6 +2173,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end @@ -2710,189 +2266,784 @@ - Bundle - + Device + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - - bdl-2: entry.search only when a search - bdl-1: total only when a search or history - bdl-3: entry.transaction when (and only when) a transaction - bdl-4: entry.transactionResponse when (and only when) a transaction-response - - - bdl-5: must be a resource unless there's a transaction or transaction response - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - - Subscription - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cpt-2: A system is required if a value is provided. - - - per-1: If present, start SHALL have a lower value than end - - - cod-1: If a valueSet is provided, a system URI Is required - - - - OrderResponse - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content - + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - + ccc-2: Only one coding in a set can be chosen directly by the user - + cod-1: If a valueSet is provided, a system URI Is required - + + per-1: If present, start SHALL have a lower value than end + + ref-1: SHALL have a local reference if the resource is provided inline - + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + cpt-2: A system is required if a value is provided. + + + per-1: If present, start SHALL have a lower value than end + + + + VisionPrescription + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + cod-1: If a valueSet is provided, a system URI Is required + + + qty-3: If a code for the units is present, the system SHALL also be present + + + + Media + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + mda-1: Height can only be used for a photo or video + mda-2: Width can only be used for a photo or video + mda-3: Frames can only be used for a photo + mda-4: Length can only be used for an audio or a video + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + att-1: It the Attachment has data, it SHALL have a contentType + + + + Conformance + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cnf-8: There can only be one REST declaration per mode + cnf-7: The set of documents must be unique by the combination of profile & mode + cnf-4: If there is more than one messaging element, endpoint must be specified for each one + cnf-5: The set of end points listed for messaging must be unique + cnf-2: A Conformance statement SHALL have at least one of description, software, or implementation + cnf-1: A Conformance statement SHALL have at least one of rest, messaging or document + + + cpt-2: A system is required if a value is provided. + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + cnf-9: A given resource can only be described once per RESTful mode + cnf-10: A given query can only be described once per RESTful mode + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + cnf-11: Operation codes must be unique in the context of a resource + cnf-12: Search parameter names must be unique in the context of a resource + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + cnf-6: The set of events per messaging endpoint must be unique by the combination of code & mode + cnf-3: Messaging end point is required (and is only permitted) when statement is for an implementation + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + ref-1: SHALL have a local reference if the resource is provided inline - ConceptMap - + ProcedureRequest + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content - + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - + ccc-2: Only one coding in a set can be chosen directly by the user - + cod-1: If a valueSet is provided, a system URI Is required - - cpt-2: A system is required if a value is provided. - - + per-1: If present, start SHALL have a lower value than end - + ref-1: SHALL have a local reference if the resource is provided inline - + ref-1: SHALL have a local reference if the resource is provided inline - - cmd-1: If the map is narrower or inexact, there SHALL be some comments + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + tim-6: If there's a periodMax, there must be a period + tim-7: If there's a durationMax, there must be a duration + tim-1: if there's a duration, there needs to be duration units + tim-2: if there's a period, there needs to be duration units + tim-3: Either frequency or when can exist, not both + + + per-1: If present, start SHALL have a lower value than end + + + tim-4: duration SHALL be a non-negative value + + + tim-5: period SHALL be a non-negative value + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + + EligibilityResponse + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + + DeviceUseRequest + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + tim-6: If there's a periodMax, there must be a period + tim-7: If there's a durationMax, there must be a duration + tim-1: if there's a duration, there needs to be duration units + tim-2: if there's a period, there needs to be duration units + tim-3: Either frequency or when can exist, not both + + + per-1: If present, start SHALL have a lower value than end + + + tim-4: duration SHALL be a non-negative value + + + tim-5: period SHALL be a non-negative value + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + + DeviceMetric + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + tim-6: If there's a periodMax, there must be a period + tim-7: If there's a durationMax, there must be a duration + tim-1: if there's a duration, there needs to be duration units + tim-2: if there's a period, there needs to be duration units + tim-3: Either frequency or when can exist, not both + + + per-1: If present, start SHALL have a lower value than end + + + tim-4: duration SHALL be a non-negative value + + + tim-5: period SHALL be a non-negative value + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + + Flag + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + + RelatedPerson + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + cpt-2: A system is required if a value is provided. + + + per-1: If present, start SHALL have a lower value than end + + + per-1: If present, start SHALL have a lower value than end + + + att-1: It the Attachment has data, it SHALL have a contentType + + + per-1: If present, start SHALL have a lower value than end @@ -2904,15 +3055,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -2926,6 +3077,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end @@ -2971,6 +3128,12 @@ ref-1: SHALL have a local reference if the resource is provided inline + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end @@ -2997,1342 +3160,227 @@ - ImagingStudy - + AppointmentResponse + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - att-1: It the Attachment has data, it SHALL have a contentType - - - - Provenance - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content - + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - - ref-1: SHALL have a local reference if the resource is provided inline - - - per-1: If present, start SHALL have a lower value than end - - + ccc-2: Only one coding in a set can be chosen directly by the user - + cod-1: If a valueSet is provided, a system URI Is required - + + per-1: If present, start SHALL have a lower value than end + + ref-1: SHALL have a local reference if the resource is provided inline - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - + ref-1: SHALL have a local reference if the resource is provided inline - + + ccc-2: Only one coding in a set can be chosen directly by the user + + cod-1: If a valueSet is provided, a system URI Is required - - cod-1: If a valueSet is provided, a system URI Is required - - + ref-1: SHALL have a local reference if the resource is provided inline - CarePlan - + Observation + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content - + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - - per-1: If present, start SHALL have a lower value than end + + obs-6: Shall only be present if Observation.value[x] is not present - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - + ccc-2: Only one coding in a set can be chosen directly by the user - + cod-1: If a valueSet is provided, a system URI Is required - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - cpl-1: DailyDose can only be specified if activity category is drug or food - cpl-2: Quantity can only be specified if activity category is supply - cpl-3: Only provide a detail reference, or a simple detail summary - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - tim-3: Either frequency or when can exist, not both - tim-1: if there's a duration, there needs to be duration units - tim-2: if there's a period, there needs to be duration units - tim-6: If there's a periodMax, there must be a period - tim-7: If there's a durationMax, there must be a duration - - - per-1: If present, start SHALL have a lower value than end - - - tim-4: duration SHALL be a non-negative value - - - tim-5: period SHALL be a non-negative value - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - + qty-3: If a code for the units is present, the system SHALL also be present - + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + rng-2: If present, low SHALL have a lower value than high + rng-3: Quantity values cannot have a comparator when used in a Range + + qty-3: If a code for the units is present, the system SHALL also be present - - - Device - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - cpt-2: A system is required if a value is provided. - - - per-1: If present, start SHALL have a lower value than end - - - - StructureDefinition - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - sdf-5: If the type is 'extension' then the structure must have context information - sdf-4: A structure must have a base unless it’s type is 'abstract' - sdf-7: If the type is Resource or Type, the url has to start with "http://hl7.org/fhir/StructureDefinition/" and the tail must match the name - sdf-6: A structure must have either a differential, or a snapshot (or both) - sdf-8: In any snapshot or differential, all the elements except the first have to have a path that starts with the path of the first + "." - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - cpt-2: A system is required if a value is provided. - - - per-1: If present, start SHALL have a lower value than end - - - cod-1: If a valueSet is provided, a system URI Is required - - - sdf-2: Must have at a name or a uri (or both) - - - sdf-1: Element paths must be unique - or not (LM) - sdf-3: If a structure is a snapshot, then each element definition must have a formal definition, and cardinalities - - - eld-13: Types must be unique by the combination of code and profile - eld-14: Constraints must be unique by key - eld-11: Binding can only be present for coded elements, string, and uri - eld-8: Pattern and value are mutually exclusive - eld-15: Constraint names must be unique. - eld-16: default value and meaningWhenMissing are mutually exclusive - eld-2: Min <= Max - eld-7: Pattern may only be specified if there is one type - eld-6: Fixed value may only be specified if there is one type - eld-5: Either a namereference or a fixed value (but not both) is permitted - - - cod-1: If a valueSet is provided, a system URI Is required - - - eld-1: If there are no discriminators, there must be a definition - - - eld-3: Max SHALL be a number or "*" - - - eld-4: Aggregation may only be specified if one of the allowed types for the element is a resource - - - eld-9: Example value sets are always extensible - eld-10: provide either a reference or a description (or both) - - - eld-12: uri SHALL start with http:// or https:// - - - ref-1: SHALL have a local reference if the resource is provided inline - - - eld-13: Types must be unique by the combination of code and profile - eld-14: Constraints must be unique by key - eld-11: Binding can only be present for coded elements, string, and uri - eld-8: Pattern and value are mutually exclusive - eld-15: Constraint names must be unique. - eld-16: default value and meaningWhenMissing are mutually exclusive - eld-2: Min <= Max - eld-7: Pattern may only be specified if there is one type - eld-6: Fixed value may only be specified if there is one type - eld-5: Either a namereference or a fixed value (but not both) is permitted - - - cod-1: If a valueSet is provided, a system URI Is required - - - eld-1: If there are no discriminators, there must be a definition - - - eld-3: Max SHALL be a number or "*" - - - eld-4: Aggregation may only be specified if one of the allowed types for the element is a resource - - - eld-9: Example value sets are always extensible - eld-10: provide either a reference or a description (or both) - - - eld-12: uri SHALL start with http:// or https:// - - - ref-1: SHALL have a local reference if the resource is provided inline - - - - Order - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ord-1: Provide a code or a schedule, but not both - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - tim-3: Either frequency or when can exist, not both - tim-1: if there's a duration, there needs to be duration units - tim-2: if there's a period, there needs to be duration units - tim-6: If there's a periodMax, there must be a period - tim-7: If there's a durationMax, there must be a duration - - - per-1: If present, start SHALL have a lower value than end - - - tim-4: duration SHALL be a non-negative value - - - tim-5: period SHALL be a non-negative value - - - ref-1: SHALL have a local reference if the resource is provided inline - - - - Procedure - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - - Substance - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - + qty-3: If a code for the units is present, the system SHALL also be present - + rat-1: numerator and denominator SHALL both be present, or both be absent. If both are absent, there SHALL be some extension present - + qty-3: If a code for the units is present, the system SHALL also be present - + qty-3: If a code for the units is present, the system SHALL also be present - - ref-1: SHALL have a local reference if the resource is provided inline + + qty-3: If a code for the units is present, the system SHALL also be present - - - DeviceUseRequest - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - tim-3: Either frequency or when can exist, not both - tim-1: if there's a duration, there needs to be duration units - tim-2: if there's a period, there needs to be duration units - tim-6: If there's a periodMax, there must be a period - tim-7: If there's a durationMax, there must be a duration - - - per-1: If present, start SHALL have a lower value than end - - - tim-4: duration SHALL be a non-negative value - - - tim-5: period SHALL be a non-negative value - - - per-1: If present, start SHALL have a lower value than end - - - - DiagnosticReport - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - + att-1: It the Attachment has data, it SHALL have a contentType - - - Medication - - cod-1: If a valueSet is provided, a system URI Is required + + per-1: If present, start SHALL have a lower value than end - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - + ccc-2: Only one coding in a set can be chosen directly by the user - + cod-1: If a valueSet is provided, a system URI Is required - - ref-1: SHALL have a local reference if the resource is provided inline - - + ccc-2: Only one coding in a set can be chosen directly by the user - + cod-1: If a valueSet is provided, a system URI Is required - + + per-1: If present, start SHALL have a lower value than end + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + ref-1: SHALL have a local reference if the resource is provided inline - - rat-1: numerator and denominator SHALL both be present, or both be absent. If both are absent, there SHALL be some extension present + + ccc-2: Only one coding in a set can be chosen directly by the user - + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + obs-3: Must have at least a low or a high or text + + + obs-4: Low range comparators can only be '>' or '>=' or empty + + qty-3: If a code for the units is present, the system SHALL also be present - + + obs-5: High range comparators can only be '<' or '<=' or empty + + qty-3: If a code for the units is present, the system SHALL also be present - + ccc-2: Only one coding in a set can be chosen directly by the user - + cod-1: If a valueSet is provided, a system URI Is required - - ref-1: SHALL have a local reference if the resource is provided inline + + rng-2: If present, low SHALL have a lower value than high + rng-3: Quantity values cannot have a comparator when used in a Range - + qty-3: If a code for the units is present, the system SHALL also be present - - - MessageHeader - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - cpt-2: A system is required if a value is provided. - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - - Schedule - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - per-1: If present, start SHALL have a lower value than end - - - - DocumentManifest - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - - DataElement - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - cpt-2: A system is required if a value is provided. - - - per-1: If present, start SHALL have a lower value than end - - - eld-13: Types must be unique by the combination of code and profile - eld-14: Constraints must be unique by key - eld-11: Binding can only be present for coded elements, string, and uri - eld-8: Pattern and value are mutually exclusive - eld-15: Constraint names must be unique. - eld-16: default value and meaningWhenMissing are mutually exclusive - eld-2: Min <= Max - eld-7: Pattern may only be specified if there is one type - eld-6: Fixed value may only be specified if there is one type - eld-5: Either a namereference or a fixed value (but not both) is permitted - - - cod-1: If a valueSet is provided, a system URI Is required - - - eld-1: If there are no discriminators, there must be a definition - - - eld-3: Max SHALL be a number or "*" - - - eld-4: Aggregation may only be specified if one of the allowed types for the element is a resource - - - eld-9: Example value sets are always extensible - eld-10: provide either a reference or a description (or both) - - - eld-12: uri SHALL start with http:// or https:// - - - ref-1: SHALL have a local reference if the resource is provided inline - - - - EligibilityRequest - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - - QuestionnaireAnswers - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - qan-1: Groups may either contain questions or groups but not both - - - ref-1: SHALL have a local reference if the resource is provided inline - - - att-1: It the Attachment has data, it SHALL have a contentType - - - cod-1: If a valueSet is provided, a system URI Is required - - + qty-3: If a code for the units is present, the system SHALL also be present - + ref-1: SHALL have a local reference if the resource is provided inline @@ -4345,15 +3393,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -4367,6 +3415,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end @@ -4447,766 +3501,1129 @@ - Encounter - + Slot + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content - + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + per-1: If present, start SHALL have a lower value than end - + ref-1: SHALL have a local reference if the resource is provided inline - - per-1: If present, start SHALL have a lower value than end - - + ccc-2: Only one coding in a set can be chosen directly by the user - + cod-1: If a valueSet is provided, a system URI Is required - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - per-1: If present, start SHALL have a lower value than end - - - qty-3: If a code for the units is present, the system SHALL also be present - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - + ref-1: SHALL have a local reference if the resource is provided inline - PaymentReconciliation - + Contraindication + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content - + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + per-1: If present, start SHALL have a lower value than end - + ref-1: SHALL have a local reference if the resource is provided inline - + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + ref-1: SHALL have a local reference if the resource is provided inline - + + + EnrollmentResponse + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + per-1: If present, start SHALL have a lower value than end - + ref-1: SHALL have a local reference if the resource is provided inline - + ref-1: SHALL have a local reference if the resource is provided inline - - ref-1: SHALL have a local reference if the resource is provided inline - - + cod-1: If a valueSet is provided, a system URI Is required - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - qty-3: If a code for the units is present, the system SHALL also be present - - + cod-1: If a valueSet is provided, a system URI Is required - - qty-3: If a code for the units is present, the system SHALL also be present + + ref-1: SHALL have a local reference if the resource is provided inline - + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + + Binary + + cod-1: If a valueSet is provided, a system URI Is required + + cod-1: If a valueSet is provided, a system URI Is required - List - + MedicationStatement + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - lst-2: The deleted flag can only be used if the mode of the list is "changes" - lst-1: A list can only have an emptyReason if it is empty - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - - DeviceUseStatement - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content - + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - + ccc-2: Only one coding in a set can be chosen directly by the user - + cod-1: If a valueSet is provided, a system URI Is required - - ref-1: SHALL have a local reference if the resource is provided inline - - + per-1: If present, start SHALL have a lower value than end - + ref-1: SHALL have a local reference if the resource is provided inline - - per-1: If present, start SHALL have a lower value than end - - + ref-1: SHALL have a local reference if the resource is provided inline - + + ref-1: SHALL have a local reference if the resource is provided inline + + + mst-1: Reason not given is only permitted if wasNotGiven is true + + ccc-2: Only one coding in a set can be chosen directly by the user - + cod-1: If a valueSet is provided, a system URI Is required - + + mst-2: Reason for use is only permitted if wasNotGiven is false + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + mst-2: Reason for use is only permitted if wasNotGiven is false + + ref-1: SHALL have a local reference if the resource is provided inline - - tim-3: Either frequency or when can exist, not both - tim-1: if there's a duration, there needs to be duration units - tim-2: if there's a period, there needs to be duration units + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + tim-6: If there's a periodMax, there must be a period tim-7: If there's a durationMax, there must be a duration - - - per-1: If present, start SHALL have a lower value than end - - - tim-4: duration SHALL be a non-negative value - - - tim-5: period SHALL be a non-negative value - - - per-1: If present, start SHALL have a lower value than end - - - - OperationDefinition - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cpt-2: A system is required if a value is provided. - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - opd-1: Either a type must be provided, or parts - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - - Goal - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - - ImagingObjectSelection - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - - SearchParameter - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cpt-2: A system is required if a value is provided. - - - per-1: If present, start SHALL have a lower value than end - - - - NutritionOrder - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - nor-1: Nutrition Order SHALL contain either Oral Diet , Supplement, or Enteral Formula class - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - tim-3: Either frequency or when can exist, not both tim-1: if there's a duration, there needs to be duration units tim-2: if there's a period, there needs to be duration units - tim-6: If there's a periodMax, there must be a period - tim-7: If there's a durationMax, there must be a duration - - - per-1: If present, start SHALL have a lower value than end - - - tim-4: duration SHALL be a non-negative value - - - tim-5: period SHALL be a non-negative value - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - qty-3: If a code for the units is present, the system SHALL also be present - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - tim-3: Either frequency or when can exist, not both - tim-1: if there's a duration, there needs to be duration units - tim-2: if there's a period, there needs to be duration units - tim-6: If there's a periodMax, there must be a period - tim-7: If there's a durationMax, there must be a duration - + per-1: If present, start SHALL have a lower value than end - + tim-4: duration SHALL be a non-negative value - + tim-5: period SHALL be a non-negative value - - qty-3: If a code for the units is present, the system SHALL also be present - - + ccc-2: Only one coding in a set can be chosen directly by the user - + cod-1: If a valueSet is provided, a system URI Is required - - tim-3: Either frequency or when can exist, not both - tim-1: if there's a duration, there needs to be duration units - tim-2: if there's a period, there needs to be duration units - tim-6: If there's a periodMax, there must be a period - tim-7: If there's a durationMax, there must be a duration - - - per-1: If present, start SHALL have a lower value than end - - - tim-4: duration SHALL be a non-negative value - - - tim-5: period SHALL be a non-negative value - - + ccc-2: Only one coding in a set can be chosen directly by the user - + cod-1: If a valueSet is provided, a system URI Is required - - qty-3: If a code for the units is present, the system SHALL also be present - - + ccc-2: Only one coding in a set can be chosen directly by the user - + cod-1: If a valueSet is provided, a system URI Is required - + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + qty-3: If a code for the units is present, the system SHALL also be present - + rat-1: numerator and denominator SHALL both be present, or both be absent. If both are absent, there SHALL be some extension present - + qty-3: If a code for the units is present, the system SHALL also be present - + qty-3: If a code for the units is present, the system SHALL also be present - + + rat-1: numerator and denominator SHALL both be present, or both be absent. If both are absent, there SHALL be some extension present + + qty-3: If a code for the units is present, the system SHALL also be present - + qty-3: If a code for the units is present, the system SHALL also be present + + Contract + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + qty-3: If a code for the units is present, the system SHALL also be present + + + qty-3: If a code for the units is present, the system SHALL also be present + + + qty-3: If a code for the units is present, the system SHALL also be present + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + per-1: If present, start SHALL have a lower value than end + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + qty-3: If a code for the units is present, the system SHALL also be present + + + qty-3: If a code for the units is present, the system SHALL also be present + + + qty-3: If a code for the units is present, the system SHALL also be present + + + att-1: It the Attachment has data, it SHALL have a contentType + + + ref-1: SHALL have a local reference if the resource is provided inline + + + att-1: It the Attachment has data, it SHALL have a contentType + + + ref-1: SHALL have a local reference if the resource is provided inline + + + att-1: It the Attachment has data, it SHALL have a contentType + + + ref-1: SHALL have a local reference if the resource is provided inline + + + att-1: It the Attachment has data, it SHALL have a contentType + + + ref-1: SHALL have a local reference if the resource is provided inline + + + + Person + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + per-1: If present, start SHALL have a lower value than end + + + cpt-2: A system is required if a value is provided. + + + per-1: If present, start SHALL have a lower value than end + + + per-1: If present, start SHALL have a lower value than end + + + att-1: It the Attachment has data, it SHALL have a contentType + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + + CommunicationRequest + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + att-1: It the Attachment has data, it SHALL have a contentType + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + + RiskAssessment + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ras-2: Must be <= 100 + + + ras-1: low and high must be percentages, if present + + + rng-2: If present, low SHALL have a lower value than high + rng-3: Quantity values cannot have a comparator when used in a Range + + + qty-3: If a code for the units is present, the system SHALL also be present + + + qty-3: If a code for the units is present, the system SHALL also be present + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + rng-2: If present, low SHALL have a lower value than high + rng-3: Quantity values cannot have a comparator when used in a Range + + + qty-3: If a code for the units is present, the system SHALL also be present + + + qty-3: If a code for the units is present, the system SHALL also be present + + + + Basic + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + + Group + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + grp-1: Can only have members if group is "actual" + grp-4: Can't have more members associated with the group than the value specified for "quantity" + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + qty-3: If a code for the units is present, the system SHALL also be present + + + rng-2: If present, low SHALL have a lower value than high + rng-3: Quantity values cannot have a comparator when used in a Range + + + qty-3: If a code for the units is present, the system SHALL also be present + + + qty-3: If a code for the units is present, the system SHALL also be present + + + grp-3: Member resource types SHALL agree with group type + + + ref-1: SHALL have a local reference if the resource is provided inline + + + + PaymentNotice + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + cod-1: If a valueSet is provided, a system URI Is required + + + + Organization + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + org-1: The organization SHALL at least have a name or an id, and possibly more than one + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + org-3: The telecom of an organization can never be of use 'home' + + + cpt-2: A system is required if a value is provided. + + + per-1: If present, start SHALL have a lower value than end + + + org-2: An address of an organization can never be of use 'home' + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + cpt-2: A system is required if a value is provided. + + + per-1: If present, start SHALL have a lower value than end + + + per-1: If present, start SHALL have a lower value than end + + ClaimResponse @@ -5216,15 +4633,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -5238,6 +4655,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end @@ -5328,6 +4751,12 @@ qty-3: If a code for the units is present, the system SHALL also be present + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end @@ -5357,90 +4786,2851 @@ - ReferralRequest - + EligibilityRequest + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content - + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + per-1: If present, start SHALL have a lower value than end - + ref-1: SHALL have a local reference if the resource is provided inline - - ccc-2: Only one coding in a set can be chosen directly by the user - - + cod-1: If a valueSet is provided, a system URI Is required - - ccc-2: Only one coding in a set can be chosen directly by the user - - + cod-1: If a valueSet is provided, a system URI Is required - - ccc-2: Only one coding in a set can be chosen directly by the user + + ref-1: SHALL have a local reference if the resource is provided inline - + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + + ProcessRequest + cod-1: If a valueSet is provided, a system URI Is required - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - + cod-1: If a valueSet is provided, a system URI Is required - - ccc-2: Only one coding in a set can be chosen directly by the user + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + cod-1: If a valueSet is provided, a system URI Is required - - ref-1: SHALL have a local reference if the resource is provided inline + + cod-1: If a valueSet is provided, a system URI Is required - + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + per-1: If present, start SHALL have a lower value than end + + ref-1: SHALL have a local reference if the resource is provided inline + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + per-1: If present, start SHALL have a lower value than end + + + + MedicationDispense + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + mdd-1: whenHandedOver cannot be before whenPrepared + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + qty-3: If a code for the units is present, the system SHALL also be present + + + qty-3: If a code for the units is present, the system SHALL also be present + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + tim-6: If there's a periodMax, there must be a period + tim-7: If there's a durationMax, there must be a duration + tim-1: if there's a duration, there needs to be duration units + tim-2: if there's a period, there needs to be duration units + tim-3: Either frequency or when can exist, not both + + + per-1: If present, start SHALL have a lower value than end + + + tim-4: duration SHALL be a non-negative value + + + tim-5: period SHALL be a non-negative value + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + rng-2: If present, low SHALL have a lower value than high + rng-3: Quantity values cannot have a comparator when used in a Range + + + qty-3: If a code for the units is present, the system SHALL also be present + + + qty-3: If a code for the units is present, the system SHALL also be present + + + qty-3: If a code for the units is present, the system SHALL also be present + + + rat-1: numerator and denominator SHALL both be present, or both be absent. If both are absent, there SHALL be some extension present + + + qty-3: If a code for the units is present, the system SHALL also be present + + + qty-3: If a code for the units is present, the system SHALL also be present + + + rat-1: numerator and denominator SHALL both be present, or both be absent. If both are absent, there SHALL be some extension present + + + qty-3: If a code for the units is present, the system SHALL also be present + + + qty-3: If a code for the units is present, the system SHALL also be present + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + + Supply + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + qty-3: If a code for the units is present, the system SHALL also be present + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + + DiagnosticReport + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + att-1: It the Attachment has data, it SHALL have a contentType + + + + ImagingStudy + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + att-1: It the Attachment has data, it SHALL have a contentType + + + + ImagingObjectSelection + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + + HealthcareService + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + att-1: It the Attachment has data, it SHALL have a contentType + + + cpt-2: A system is required if a value is provided. + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + + DataElement + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + cpt-2: A system is required if a value is provided. + + + per-1: If present, start SHALL have a lower value than end + + + eld-2: Min <= Max + eld-5: Either a namereference or a fixed value (but not both) is permitted + eld-7: Pattern may only be specified if there is one type + eld-6: Fixed value may only be specified if there is one type + eld-11: Binding can only be present for coded elements, string, and uri + eld-8: Pattern and value are mutually exclusive + eld-14: Constraints must be unique by key + eld-13: Types must be unique by the combination of code and profile + eld-16: default value and meaningWhenMissing are mutually exclusive + eld-15: Constraint names must be unique. + + + cod-1: If a valueSet is provided, a system URI Is required + + + eld-1: If there are no discriminators, there must be a definition + + + eld-3: Max SHALL be a number or "*" + + + eld-4: Aggregation may only be specified if one of the allowed types for the element is a resource + + + eld-10: provide either a reference or a description (or both) + eld-9: Example value sets are always extensible + + + eld-12: uri SHALL start with http:// or https:// + + + ref-1: SHALL have a local reference if the resource is provided inline + + + + DeviceComponent + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + + FamilyMemberHistory + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + fhs-1: Can have age[x] or birth[x], but not both + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + qty-3: If a code for the units is present, the system SHALL also be present + + + rng-2: If present, low SHALL have a lower value than high + rng-3: Quantity values cannot have a comparator when used in a Range + + + qty-3: If a code for the units is present, the system SHALL also be present + + + qty-3: If a code for the units is present, the system SHALL also be present + + + qty-3: If a code for the units is present, the system SHALL also be present + + + rng-2: If present, low SHALL have a lower value than high + rng-3: Quantity values cannot have a comparator when used in a Range + + + qty-3: If a code for the units is present, the system SHALL also be present + + + qty-3: If a code for the units is present, the system SHALL also be present + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + qty-3: If a code for the units is present, the system SHALL also be present + + + rng-2: If present, low SHALL have a lower value than high + rng-3: Quantity values cannot have a comparator when used in a Range + + + qty-3: If a code for the units is present, the system SHALL also be present + + + qty-3: If a code for the units is present, the system SHALL also be present + + + + QuestionnaireAnswers + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + qan-1: Groups may either contain questions or groups but not both + + + ref-1: SHALL have a local reference if the resource is provided inline + + + att-1: It the Attachment has data, it SHALL have a contentType + + + cod-1: If a valueSet is provided, a system URI Is required + + + qty-3: If a code for the units is present, the system SHALL also be present + + + ref-1: SHALL have a local reference if the resource is provided inline + + + + NutritionOrder + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + nor-1: Nutrition Order SHALL contain either Oral Diet , Supplement, or Enteral Formula class + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + tim-6: If there's a periodMax, there must be a period + tim-7: If there's a durationMax, there must be a duration + tim-1: if there's a duration, there needs to be duration units + tim-2: if there's a period, there needs to be duration units + tim-3: Either frequency or when can exist, not both + + + per-1: If present, start SHALL have a lower value than end + + + tim-4: duration SHALL be a non-negative value + + + tim-5: period SHALL be a non-negative value + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + qty-3: If a code for the units is present, the system SHALL also be present + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + tim-6: If there's a periodMax, there must be a period + tim-7: If there's a durationMax, there must be a duration + tim-1: if there's a duration, there needs to be duration units + tim-2: if there's a period, there needs to be duration units + tim-3: Either frequency or when can exist, not both + + + per-1: If present, start SHALL have a lower value than end + + + tim-4: duration SHALL be a non-negative value + + + tim-5: period SHALL be a non-negative value + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + qty-3: If a code for the units is present, the system SHALL also be present + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + tim-6: If there's a periodMax, there must be a period + tim-7: If there's a durationMax, there must be a duration + tim-1: if there's a duration, there needs to be duration units + tim-2: if there's a period, there needs to be duration units + tim-3: Either frequency or when can exist, not both + + + per-1: If present, start SHALL have a lower value than end + + + tim-4: duration SHALL be a non-negative value + + + tim-5: period SHALL be a non-negative value + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + qty-3: If a code for the units is present, the system SHALL also be present + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + qty-3: If a code for the units is present, the system SHALL also be present + + + rat-1: numerator and denominator SHALL both be present, or both be absent. If both are absent, there SHALL be some extension present + + + qty-3: If a code for the units is present, the system SHALL also be present + + + qty-3: If a code for the units is present, the system SHALL also be present + + + qty-3: If a code for the units is present, the system SHALL also be present + + + qty-3: If a code for the units is present, the system SHALL also be present + + + + Encounter + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + per-1: If present, start SHALL have a lower value than end + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + per-1: If present, start SHALL have a lower value than end + + + qty-3: If a code for the units is present, the system SHALL also be present + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + + Substance + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + qty-3: If a code for the units is present, the system SHALL also be present + + + rat-1: numerator and denominator SHALL both be present, or both be absent. If both are absent, there SHALL be some extension present + + + qty-3: If a code for the units is present, the system SHALL also be present + + + qty-3: If a code for the units is present, the system SHALL also be present + + + ref-1: SHALL have a local reference if the resource is provided inline + + + + AuditEvent + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + sev-3: Either a userId or a reference, but not both + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + sev-1: Either a name or a query (or both) + sev-2: Either an identifier or a reference, but not both + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + + SearchParameter + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cpt-2: A system is required if a value is provided. + + + per-1: If present, start SHALL have a lower value than end + + + + PaymentReconciliation + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + qty-3: If a code for the units is present, the system SHALL also be present + + + cod-1: If a valueSet is provided, a system URI Is required + + + qty-3: If a code for the units is present, the system SHALL also be present + + + cod-1: If a valueSet is provided, a system URI Is required + + + + Communication + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + att-1: It the Attachment has data, it SHALL have a contentType + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + + Condition + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + qty-3: If a code for the units is present, the system SHALL also be present + + + per-1: If present, start SHALL have a lower value than end + + + rng-2: If present, low SHALL have a lower value than high + rng-3: Quantity values cannot have a comparator when used in a Range + + + qty-3: If a code for the units is present, the system SHALL also be present + + + qty-3: If a code for the units is present, the system SHALL also be present + + + qty-3: If a code for the units is present, the system SHALL also be present + + + per-1: If present, start SHALL have a lower value than end + + + rng-2: If present, low SHALL have a lower value than high + rng-3: Quantity values cannot have a comparator when used in a Range + + + qty-3: If a code for the units is present, the system SHALL also be present + + + qty-3: If a code for the units is present, the system SHALL also be present + + + con-1: Stage SHALL have summary or assessment + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + con-2: evidence SHALL have code or details + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + con-4: Relationship SHALL have either a code or a target + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + con-5: Relationship SHALL have either a code or a target + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + + Composition + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + cmp-1: A section must have either subsections or content + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + + Bundle + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + bdl-3: entry.transaction when (and only when) a transaction + bdl-4: entry.transactionResponse when (and only when) a transaction-response + bdl-1: total only when a search or history + bdl-2: entry.search only when a search + + + bdl-5: must be a resource unless there's a transaction or transaction response + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + + DiagnosticOrder + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + + Patient + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + per-1: If present, start SHALL have a lower value than end + + + cpt-2: A system is required if a value is provided. + + + per-1: If present, start SHALL have a lower value than end + + + per-1: If present, start SHALL have a lower value than end + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + att-1: It the Attachment has data, it SHALL have a contentType + + + pat-1: SHALL at least contain a contact's details or a reference to an organization + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + cpt-2: A system is required if a value is provided. + + + per-1: If present, start SHALL have a lower value than end + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + per-1: If present, start SHALL have a lower value than end + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + + OrderResponse + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + + Coverage + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + per-1: If present, start SHALL have a lower value than end + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + + DeviceUseStatement + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + tim-6: If there's a periodMax, there must be a period + tim-7: If there's a durationMax, there must be a duration + tim-1: if there's a duration, there needs to be duration units + tim-2: if there's a period, there needs to be duration units + tim-3: Either frequency or when can exist, not both + + + per-1: If present, start SHALL have a lower value than end + + + tim-4: duration SHALL be a non-negative value + + + tim-5: period SHALL be a non-negative value + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + + ProcessResponse + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + + NamingSystem + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + nsd-1: Root systems cannot have uuid or sid identifiers + nsd-3: Can only have replacedBy if namingsystem is retired + nsd-2: Can't have more than one preferred identifier for a type + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + cpt-2: A system is required if a value is provided. + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + + Schedule + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + per-1: If present, start SHALL have a lower value than end + + + + SupportingDocumentation + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + att-1: It the Attachment has data, it SHALL have a contentType + ClinicalImpression @@ -5451,15 +7641,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -5529,161 +7719,72 @@ - BodySite - + MessageHeader + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - qty-3: If a code for the units is present, the system SHALL also be present - - - att-1: It the Attachment has data, it SHALL have a contentType - - - - CommunicationRequest - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content - + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + + + cpt-2: A system is required if a value is provided. + + per-1: If present, start SHALL have a lower value than end - + ref-1: SHALL have a local reference if the resource is provided inline - + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + ccc-2: Only one coding in a set can be chosen directly by the user - + cod-1: If a valueSet is provided, a system URI Is required - + ref-1: SHALL have a local reference if the resource is provided inline - - ref-1: SHALL have a local reference if the resource is provided inline - - - att-1: It the Attachment has data, it SHALL have a contentType - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - Claim @@ -5694,15 +7795,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -5716,6 +7817,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end @@ -5880,267 +7987,78 @@ - RiskAssessment - + ImmunizationRecommendation + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ras-2: Must be <= 100 - - - ras-1: low and high must be percentages, if present - - - rng-2: If present, low SHALL have a lower value than high - rng-3: Quantity values cannot have a comparator when used in a Range - - - qty-3: If a code for the units is present, the system SHALL also be present - - - qty-3: If a code for the units is present, the system SHALL also be present - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - rng-2: If present, low SHALL have a lower value than high - rng-3: Quantity values cannot have a comparator when used in a Range - - - qty-3: If a code for the units is present, the system SHALL also be present - - - qty-3: If a code for the units is present, the system SHALL also be present - - - - FamilyHistory - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - fhs-1: Can have age[x] or birth[x], but not both - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - qty-3: If a code for the units is present, the system SHALL also be present - - - rng-2: If present, low SHALL have a lower value than high - rng-3: Quantity values cannot have a comparator when used in a Range - - - qty-3: If a code for the units is present, the system SHALL also be present - - - qty-3: If a code for the units is present, the system SHALL also be present - - - qty-3: If a code for the units is present, the system SHALL also be present - - - rng-2: If present, low SHALL have a lower value than high - rng-3: Quantity values cannot have a comparator when used in a Range - - - qty-3: If a code for the units is present, the system SHALL also be present - - - qty-3: If a code for the units is present, the system SHALL also be present - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - qty-3: If a code for the units is present, the system SHALL also be present - - - rng-2: If present, low SHALL have a lower value than high - rng-3: Quantity values cannot have a comparator when used in a Range - - - qty-3: If a code for the units is present, the system SHALL also be present - - - qty-3: If a code for the units is present, the system SHALL also be present - - - - EnrollmentRequest - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content - + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + per-1: If present, start SHALL have a lower value than end - + ref-1: SHALL have a local reference if the resource is provided inline - + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + cod-1: If a valueSet is provided, a system URI Is required - + + ccc-2: Only one coding in a set can be chosen directly by the user + + cod-1: If a valueSet is provided, a system URI Is required - - ref-1: SHALL have a local reference if the resource is provided inline + + ccc-2: Only one coding in a set can be chosen directly by the user - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - + cod-1: If a valueSet is provided, a system URI Is required + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + Location @@ -6151,15 +8069,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -6173,6 +8091,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end @@ -6208,1444 +8132,65 @@ - ExplanationOfBenefit - + BodySite + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content - + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - + cod-1: If a valueSet is provided, a system URI Is required - + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + per-1: If present, start SHALL have a lower value than end - + ref-1: SHALL have a local reference if the resource is provided inline - - ref-1: SHALL have a local reference if the resource is provided inline - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - - AllergyIntolerance - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - + ccc-2: Only one coding in a set can be chosen directly by the user - + cod-1: If a valueSet is provided, a system URI Is required - + ccc-2: Only one coding in a set can be chosen directly by the user - + cod-1: If a valueSet is provided, a system URI Is required - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - qty-3: If a code for the units is present, the system SHALL also be present - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - - Observation - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - obs-6: Shall only be present if Observation.value[x] is not present - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - qty-3: If a code for the units is present, the system SHALL also be present - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - rng-2: If present, low SHALL have a lower value than high - rng-3: Quantity values cannot have a comparator when used in a Range - - - qty-3: If a code for the units is present, the system SHALL also be present - - - qty-3: If a code for the units is present, the system SHALL also be present - - - rat-1: numerator and denominator SHALL both be present, or both be absent. If both are absent, there SHALL be some extension present - - - qty-3: If a code for the units is present, the system SHALL also be present - - - qty-3: If a code for the units is present, the system SHALL also be present - - - qty-3: If a code for the units is present, the system SHALL also be present - - + att-1: It the Attachment has data, it SHALL have a contentType - - per-1: If present, start SHALL have a lower value than end - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - obs-3: Must have at least a low or a high or text - - - obs-4: Low range comparators can only be '>' or '>=' or empty - - - qty-3: If a code for the units is present, the system SHALL also be present - - - obs-5: High range comparators can only be '<' or '<=' or empty - - - qty-3: If a code for the units is present, the system SHALL also be present - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - rng-2: If present, low SHALL have a lower value than high - rng-3: Quantity values cannot have a comparator when used in a Range - - - qty-3: If a code for the units is present, the system SHALL also be present - - - qty-3: If a code for the units is present, the system SHALL also be present - - - ref-1: SHALL have a local reference if the resource is provided inline - - - - Contract - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - qty-3: If a code for the units is present, the system SHALL also be present - - - qty-3: If a code for the units is present, the system SHALL also be present - - - qty-3: If a code for the units is present, the system SHALL also be present - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - per-1: If present, start SHALL have a lower value than end - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - qty-3: If a code for the units is present, the system SHALL also be present - - - qty-3: If a code for the units is present, the system SHALL also be present - - - qty-3: If a code for the units is present, the system SHALL also be present - - - att-1: It the Attachment has data, it SHALL have a contentType - - - ref-1: SHALL have a local reference if the resource is provided inline - - - att-1: It the Attachment has data, it SHALL have a contentType - - - ref-1: SHALL have a local reference if the resource is provided inline - - - att-1: It the Attachment has data, it SHALL have a contentType - - - ref-1: SHALL have a local reference if the resource is provided inline - - - att-1: It the Attachment has data, it SHALL have a contentType - - - ref-1: SHALL have a local reference if the resource is provided inline - - - - SupportingDocumentation - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - att-1: It the Attachment has data, it SHALL have a contentType - - - - RelatedPerson - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - cpt-2: A system is required if a value is provided. - - - per-1: If present, start SHALL have a lower value than end - - - per-1: If present, start SHALL have a lower value than end - - - att-1: It the Attachment has data, it SHALL have a contentType - - - per-1: If present, start SHALL have a lower value than end - - - - Basic - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - - ProcessResponse - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - - Specimen - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - per-1: If present, start SHALL have a lower value than end - - - qty-3: If a code for the units is present, the system SHALL also be present - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - qty-3: If a code for the units is present, the system SHALL also be present - - - qty-3: If a code for the units is present, the system SHALL also be present - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - - Alert - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - - AuditEvent - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - sev-3: Either a userId or a reference, but not both - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - sev-2: Either an identifier or a reference, but not both - sev-1: Either a name or a query (or both) - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - - EnrollmentResponse - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - - Patient - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - per-1: If present, start SHALL have a lower value than end - - - cpt-2: A system is required if a value is provided. - - - per-1: If present, start SHALL have a lower value than end - - - per-1: If present, start SHALL have a lower value than end - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - att-1: It the Attachment has data, it SHALL have a contentType - - - pat-1: SHALL at least contain a contact's details or a reference to an organization - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - cpt-2: A system is required if a value is provided. - - - per-1: If present, start SHALL have a lower value than end - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - per-1: If present, start SHALL have a lower value than end - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - - EligibilityResponse - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - - CarePlan2 - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - - Person - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - per-1: If present, start SHALL have a lower value than end - - - cpt-2: A system is required if a value is provided. - - - per-1: If present, start SHALL have a lower value than end - - - per-1: If present, start SHALL have a lower value than end - - - att-1: It the Attachment has data, it SHALL have a contentType - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - - DiagnosticOrder - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources - dom-1: If the resource is contained in another resource, it SHALL not contain any narrative - - - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - per-1: If present, start SHALL have a lower value than end - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ref-1: SHALL have a local reference if the resource is provided inline - diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/fhir-single.xsd b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/fhir-single.xsd index 2d606a9bc54..7b15330ae5b 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/fhir-single.xsd +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/fhir-single.xsd @@ -27,24 +27,29 @@ POSSIBILITY OF SUCH DAMAGE. - Generated on Tue, Mar 24, 2015 11:45+0000 for FHIR v0.4.0 + Generated on Tue, Mar 31, 2015 09:45-0400 for FHIR v0.4.0 --> - - + + + + + + + - + - A whole number + A date, or partial date (e.g. just year or year + month). There is no time zone. The format is a union of the schema types gYear, gYearMonth and date. Dates SHALL be valid dates. If the element is present, it must have either a @value, an @id, or extensions - + @@ -83,97 +88,33 @@ - - - - - - - - - - - A date, or partial date (e.g. just year or year + month). There is no time zone. The format is a union of the schema types gYear, gYearMonth and date. Dates SHALL be valid dates. - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - - - - A rational number with implicit precision - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - - - - String of characters used to identify a name or a resource - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - + - - + - Any combination of lowercase letters, numerals, "-" and ".", with a length limit of 36 characters. (This might be an integer, an unprefixed OID, UUID or any other identifier pattern that meets these constraints.) Systems SHALL send ids as lower-case but SHOULD interpret them case-insensitively. - If the element is present, it must have either a @value, an @id referenced from the Narrative, or extensions - - - - - - - - - - - - - A stream of bytes + A sequence of Unicode characters If the element is present, it must have either a @value, an @id, or extensions - + - - - - + + - + - A time during the day, with no date specified + A whole number If the element is present, it must have either a @value, an @id, or extensions - + @@ -194,33 +135,17 @@ - - - - + + - + - A sequence of Unicode characters + String of characters used to identify a name or a resource If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - Value of "true" or "false" - If the element is present, it must have either a @value, an @id, or extensions - - - - + @@ -255,10 +180,116 @@ + + + + + + Value of "true" or "false" + If the element is present, it must have either a @value, an @id, or extensions + + + + + + + + + + + + + A stream of bytes + If the element is present, it must have either a @value, an @id, or extensions + + + + + + + + + + + + + + + An integer with a value that is not negative (e.g. >= 0) + If the element is present, it must have either a @value, an @id referenced from the Narrative, or extensions + + + + + + + + + + + + + + + A time during the day, with no date specified + If the element is present, it must have either a @value, an @id, or extensions + + + + + + + + + + + + + + + + Any combination of lowercase letters, numerals, "-" and ".", with a length limit of 36 characters. (This might be an integer, an unprefixed OID, UUID or any other identifier pattern that meets these constraints.) Systems SHALL send ids as lower-case but SHOULD interpret them case-insensitively. + If the element is present, it must have either a @value, an @id referenced from the Narrative, or extensions + + + + + + + + + + + + + + + An integer with a value that is positive (e.g. >0) + If the element is present, it must have either a @value, an @id referenced from the Narrative, or extensions + + + + + + + + + + + + + A rational number with implicit precision + If the element is present, it must have either a @value, an @id, or extensions + + + + + + + - @@ -268,7 +299,6 @@ - @@ -298,7 +328,8 @@ - + + @@ -323,7 +354,6 @@ - @@ -379,6 +409,8 @@ + + @@ -489,28 +521,83 @@ - + - A time period defined by a start and end date and optionally time. + A technical identifier - identifies some entity uniquely and unambiguously. If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions - + - The start of the period. The boundary is inclusive. + The purpose of this identifier. - + - The end of the period. If the end of the period is missing, it means that the period is ongoing. + A coded type for the identifier that can be used to determine which identifier to use for a specific purpose. + + + + + Establishes the namespace in which set of possible id values is unique. + + + + + The portion of the identifier typically displayed to the user and which is unique within the context of the system. + + + + + Time period during which identifier is/was valid for use. + + + + + Organization that issued/manages the identifier. + + + + + the identifier recommended for display and use in real-world interactions. + + + + + the identifier considered to be most trusted for the identification of this item. + + + + + A temporary identifier. + + + + + An identifier that was assigned in secondary use - it serves to identify the object in a relative context, but cannot be consistently assigned to the same object again in a different context. + + + + + + + Identifies the purpose for this identifier, if known + If the element is present, it must have either a @value, an @id, or extensions + + + + + + + A reference to a code defined by a terminology system. @@ -548,28 +635,152 @@ - + - A set of ordered Quantities defined by a low and high limit. + A reference from one resource to another. If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions - + - The low limit. The boundary is inclusive. + A reference to a location at which the other resource is found. The reference may be a relative reference, in which case it is relative to the service base URL, or an absolute URL that resolves to the location where the resource is found. The reference may be version specific or not. If the reference is not to a FHIR RESTful server, then it should be assumed to be version specific. Internal fragment references (start with '#') refer to contained resources. - + - The high limit. The boundary is inclusive. + Plain text narrative that identifies the resource in addition to the resource reference. + + + An XML digital signature along with supporting context. + If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions + + + + + + + An indication of the reason that the entity signed this document. This may be explicitly included as part of the signature information and can be used when determining accountability for various actions concerning the document. + + + + + When the digital signature was signed. + + + + + A reference to an application-usable description of the person that signed the certificate (e.g. the signature used their private key). + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The base64 encoding of the XML-Signature. + + + + + + + + + A series of measurements taken by a device, with upper and lower limits. There may be more than one dimension in the data. + If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions + + + + + + + The base quantity that a measured value of zero represents. In addition, this provides the units of the entire measurement series. + + + + + The length of time between sampling times, measured in milliseconds. + + + + + A correction factor that is applied to the sampled data points before they are added to the origin. + + + + + The lower limit of detection of the measured points. This is needed if any of the data points have the value "L" (lower than detection limit). + + + + + The upper limit of detection of the measured points. This is needed if any of the data points have the value "U" (higher than detection limit). + + + + + The number of sample points at each time point. If this value is greater than one, then the dimensions will be interlaced - all the sample points for a point in time will be recorded at once. + + + + + A series of data points which are decimal values separated by a single space (character u20). The special values "E" (error), "L" (below detection limit) and "U" (above detection limit) can also be used in place of a decimal value. + + + + + + + + + + + + + + + + + + + A measured amount (or an amount that can potentially be measured). Note that measured amounts include amounts that are not precisely quantified, including amounts involving arbitrary units and floating currencies. @@ -642,6 +853,28 @@ + + + A time period defined by a start and end date and optionally time. + If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions + + + + + + + The start of the period. The boundary is inclusive. + + + + + The end of the period. If the end of the period is missing, it means that the period is ongoing. + + + + + + For referring to data content defined in other formats. @@ -670,7 +903,7 @@ An alternative location where the data can be accessed. - + The number of bytes of data that make up this attachment. @@ -716,82 +949,22 @@ - + - A series of measurements taken by a device, with upper and lower limits. There may be more than one dimension in the data. + A set of ordered Quantities defined by a low and high limit. If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions - + - The base quantity that a measured value of zero represents. In addition, this provides the units of the entire measurement series. + The low limit. The boundary is inclusive. - + - The length of time between sampling times, measured in milliseconds. - - - - - A correction factor that is applied to the sampled data points before they are added to the origin. - - - - - The lower limit of detection of the measured points. This is needed if any of the data points have the value "L" (lower than detection limit). - - - - - The upper limit of detection of the measured points. This is needed if any of the data points have the value "U" (higher than detection limit). - - - - - The number of sample points at each time point. If this value is greater than one, then the dimensions will be interlaced - all the sample points for a point in time will be recorded at once. - - - - - A series of data points which are decimal values separated by a single space (character u20). The special values "E" (error), "L" (below detection limit) and "U" (above detection limit) can also be used in place of a decimal value. - - - - - - - - - - - - - - - - - - - - - - A reference from one resource to another. - If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions - - - - - - - A reference to a location at which the other resource is found. The reference may be a relative reference, in which case it is relative to the service base URL, or an absolute URL that resolves to the location where the resource is found. The reference may be version specific or not. If the reference is not to a FHIR RESTful server, then it should be assumed to be version specific. Internal fragment references (start with '#') refer to contained resources. - - - - - Plain text narrative that identifies the resource in addition to the resource reference. + The high limit. The boundary is inclusive. @@ -820,213 +993,6 @@ - - - A technical identifier - identifies some entity uniquely and unambiguously. - If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions - - - - - - - The purpose of this identifier. - - - - - A text string for the identifier that can be displayed to a human so they can recognize the identifier. - - - - - Establishes the namespace in which set of possible id values is unique. - - - - - The portion of the identifier typically displayed to the user and which is unique within the context of the system. - - - - - Time period during which identifier is/was valid for use. - - - - - Organization that issued/manages the identifier. - - - - - - - - - - - the identifier recommended for display and use in real-world interactions. - - - - - the identifier considered to be most trusted for the identification of this item. - - - - - A temporary identifier. - - - - - An identifier that was assigned in secondary use - it serves to identify the object in a relative context, but cannot be consistently assigned to the same object again in a different context. - - - - - - - Identifies the purpose for this identifier, if known - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - An XML digital signature along with supporting context. - If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions - - - - - - - An indication of the reason that the entity signed this document. This may be explicitly included as part of the signature information and can be used when determining accountability for various actions concerning the document. - - - - - When the digital signature was signed. - - - - - A reference to an application-usable description of the person that signed the certificate (e.g. the signature used their private key). - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The base64 encoding of the XML-Signature. - - - - - - - - - - - - - The value of the measured amount. The value includes an implicit precision in the presentation of the value. - - - - - How the value should be understood and represented - whether the actual value is greater or less than the stated value due to measurement issues. E.g. if the comparator is "<" , then the real value is < stated value. - - - - - A human-readable form of the units. - - - - - The identification of the system that provides the coded form of the unit. - - - - - A computer processable form of the units in some unit representation system. - - - - - - - - - - - - - - The value of the measured amount. The value includes an implicit precision in the presentation of the value. - - - - - How the value should be understood and represented - whether the actual value is greater or less than the stated value due to measurement issues. E.g. if the comparator is "<" , then the real value is < stated value. - - - - - A human-readable form of the units. - - - - - The identification of the system that provides the coded form of the unit. - - - - - A computer processable form of the units in some unit representation system. - - - - - - - @@ -1061,40 +1027,6 @@ - - - - - - - The value of the measured amount. The value includes an implicit precision in the presentation of the value. - - - - - How the value should be understood and represented - whether the actual value is greater or less than the stated value due to measurement issues. E.g. if the comparator is "<" , then the real value is < stated value. - - - - - A human-readable form of the units. - - - - - The identification of the system that provides the coded form of the unit. - - - - - A computer processable form of the units in some unit representation system. - - - - - - - @@ -1129,600 +1061,434 @@ - + + + + + + + The value of the measured amount. The value includes an implicit precision in the presentation of the value. + + + + + How the value should be understood and represented - whether the actual value is greater or less than the stated value due to measurement issues. E.g. if the comparator is "<" , then the real value is < stated value. + + + + + A human-readable form of the units. + + + + + The identification of the system that provides the coded form of the unit. + + + + + A computer processable form of the units in some unit representation system. + + + + + + + + + + + + + + The value of the measured amount. The value includes an implicit precision in the presentation of the value. + + + + + How the value should be understood and represented - whether the actual value is greater or less than the stated value due to measurement issues. E.g. if the comparator is "<" , then the real value is < stated value. + + + + + A human-readable form of the units. + + + + + The identification of the system that provides the coded form of the unit. + + + + + A computer processable form of the units in some unit representation system. + + + + + + + + + + + + + + The value of the measured amount. The value includes an implicit precision in the presentation of the value. + + + + + How the value should be understood and represented - whether the actual value is greater or less than the stated value due to measurement issues. E.g. if the comparator is "<" , then the real value is < stated value. + + + + + A human-readable form of the units. + + + + + The identification of the system that provides the coded form of the unit. + + + + + A computer processable form of the units in some unit representation system. + + + + + + + + - Captures constraints on each element within the resource, profile, or extension. + A human's name with the ability to identify parts and usage. If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions - + - The path identifies the element and is expressed as a "."-separated list of ancestor elements, beginning with the name of the resource or extension. + Identifies the purpose for this name. - + - Codes that define how this element is represented in instances, when the deviation varies from the normal case. + A full text representation of the name. - + - The name of this element definition (to refer to it from other element definitions using ElementDefinition.nameReference). This is a unique name referring to a specific set of constraints applied to this element. One use of this is to provide a name to different slices of the same element. + The part of a name that links to the genealogy. In some cultures (e.g. Eritrea) the family name of a son is the first name of his father. - + - The text to display beside the element indicating its meaning or to use to prompt for the element in a user display or form. + Given name. - + - A code that provides the meaning for the element according to a particular terminology. + Part of the name that is acquired as a title due to academic, legal, employment or nobility status, etc. and that appears at the start of the name. - + - Indicates that the element is sliced into a set of alternative definitions (there are multiple definitions on a single element in the base resource). The set of slices is any elements that come after this in the element sequence that have the same path, until a shorter path occurs (the shorter path terminates the set). + Part of the name that is acquired as a title due to academic, legal, employment or nobility status, etc. and that appears at the end of the name. - + - A concise definition that is shown in the generated XML format that summarizes profiles (used throughout the specification). - - - - - Provides a complete explanation of the meaning of the data element for human readability. For the case of elements derived from existing elements (e.g. constraints), the definition SHALL be consistent with the base definition, but convey the meaning of the element in the particular context of use of the resource. - - - - - Comments about the use of the element, including notes about how to use the data properly, exceptions to proper use, etc. - - - - - Explains why this element is needed and why it's been constrained as it has. - - - - - Identifies additional names by which this element might also be known. - - - - - The minimum number of times this element SHALL appear in the instance. - - - - - The maximum number of times this element is permitted to appear in the instance. - - - - - The data type or resource that the value of this element is permitted to be. - - - - - Identifies the name of a slice defined elsewhere in the profile whose constraints should be applied to the current element. - - - - - The value that should be used if there is no value stated in the instance. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The Implicit meaning that is to be understood when this element is missing. - - - - - Specifies a value that SHALL be exactly the value for this element in the instance. For purposes of comparison, non-signficant whitespace is ignored, and all values must be an exact match (case and accent sensitive). Missing elements/attributes must also be missing. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Specifies a value that the value in the instance SHALL follow - that is, any value in the pattern must be found in the instance. Other additional values may be found too. This is effectively constraint by example. The values of elements present in the pattern must match exactly (case-senstive, accent-sensitive, etc.). - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - A sample value for this element demonstrating the type of information that would typically be captured. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Indicates the maximum length in characters that is permitted to be present in conformant instances and which is expected to be supported by conformant consumers that support the element. - - - - - A reference to an invariant that may make additional statements about the cardinality or value in the instance. - - - - - Formal constraints such as co-occurrence and other constraints that can be computationally evaluated within the context of the instance. - - - - - If true, conformant resource authors SHALL be capable of providing a value for the element and resource consumers SHALL be capable of extracting and doing something useful with the data element. If false, the element may be ignored and not supported. - - - - - If true, the value of this element affects the interpretation of the element or resource that contains it, and the value of the element cannot be ignored. Typically, this is used for status, negation and qualification codes. The effect of this is that the element cannot be ignored by systems: they SHALL either recognize the element and process it, and/or a pre-determination has been made that it is not relevant to their particular system. - - - - - Whether the element should be included if a client requests a search with the parameter _summary=true. - - - - - Binds to a value set if this element is coded (code, Coding, CodeableConcept). - - - - - Identifies a concept from an external specification that roughly corresponds to this element. + Indicates the period of time when this name was valid for the named person. - - - Captures constraints on each element within the resource, profile, or extension. - If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions - - - - - - - An internal reference to the definition of a mapping. - - - - - Identifies the computable language in which mapping.map is expressed. - - - - - Expresses what part of the target specification corresponds to this element. - - - - - - - - - Captures constraints on each element within the resource, profile, or extension. - If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions - - - - - - - Designates which child elements are used to discriminate between the slices when processing an instance. If one or more discriminators are provided, the value of the child elements in the instance data SHALL completely distinguish which slice the element in the resource matches based on the allowed values for those elements in each of the slices. - - - - - A human-readable text description of how the slicing works. If there is no discriminator, this is required to be present to provide whatever information is possible about how the slices can be differentiated. - - - - - If the matching elements have to occur in the same order as defined in the profile. - - - - - Whether additional slices are allowed or not. When the slices are ordered, profile authors can also say that additional slices are only allowed at the end. - - - - - - - - - Captures constraints on each element within the resource, profile, or extension. - If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions - - - - - - - A descriptive name for this - can be useful for generating implementation artifacts. - - - - - Indicates the degree of conformance expectations associated with this binding - that is, the degree to which the provided value set must be adhered to in the instances. - - - - - Describes the intended use of this particular set of codes. - - - - - Points to the value set or external definition (e.g. implicit value set) that identifies the set of codes to be used. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Captures constraints on each element within the resource, profile, or extension. - If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions - - - - - - - Name of Data type or Resource that is a(or the) type used for this element. - - - - - Identifies a profile structure that SHALL hold for resources or datatypes referenced as the type of this element. Can be a local reference - to another structure in this profile, or a reference to a structure in another profile. - - - - - If the type is a reference to another resource, how the resource is or can be aggreated - is it a contained resource, or a reference, and if the context is a bundle, is it included in the bundle. - - - - - - - - - Captures constraints on each element within the resource, profile, or extension. - If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions - - - - - - - Allows identification of which elements have their cardinalities impacted by the constraint. Will not be referenced for constraints that do not affect cardinality. - - - - - Used to label the constraint in OCL or in short displays incapable of displaying the full human description. - - - - - Identifies the impact constraint violation has on the conformance of the instance. - - - - - Text that can be used to describe the constraint in messages identifying that the constraint has been violated. - - - - - An XPath expression of constraint that can be executed to see if this constraint is met. - - - - - - - + - + - In XML, this property is represented as an attribute not an element. + Known as/conventional/the one you normally use. + + + + + The formal name as registered in an official (government) registry, but which name might not be commonly used. May be called "legal name". + + + + + A temporary name. Name.period can provide more detailed information. This may also be used for temporary names assigned at birth or in emergency situations. + + + + + A name that is used to address the person in an informal manner, but is not part of their formal or usual name. + + + + + Anonymous assigned name, alias, or pseudonym (used to protect a person's identity for privacy reasons). + + + + + This name is no longer in use (or was never correct, but retained for records). + + + + + A name used prior to marriage. Marriage naming customs vary greatly around the world. This name use is for use by applications that collect and store "maiden" names. Though the concept of maiden name is often gender specific, the use of this term is not gender specific. The use of this term does not imply any particular history for a person's name, nor should the maiden name be determined algorithmically. - + - How a property is represented on the wire + The use of a human name If the element is present, it must have either a @value, an @id, or extensions - + - + + + Details for All kinds of technology mediated contact points for a person or organization, including telephone, email, etc. + If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions + + + + + + + Telecommunications form for contact point - what communications system is required to make use of the contact. + + + + + The actual contact point details, in a form that is meaningful to the designated communication system (i.e. phone number or email address). + + + + + Identifies the purpose for the contact point. + + + + + Time period when the contact point was/is in use. + + + + + + + - + - No additional content is allowed other than that described by the slices in this profile. + The value is a telephone number used for voice calls. Use of full international numbers starting with + is recommended to enable automatic dialing support but not required. - + - Additional content is allowed anywhere in the list. + The value is a fax machine. Use of full international numbers starting with + is recommended to enable automatic dialing support but not required. - + - Additional content is allowed, but only at the end of the list. Note that using this requires that the slices be ordered, which makes it hard to share uses. This should only be done where absolutely required. + The value is an email address. + + + + + The value is a url. This is intended for various personal contacts including blogs, Twitter, Facebook, etc. Do not use for email addresses. - + - How slices are interpreted when evaluating an instance + Telecommunications form for contact point If the element is present, it must have either a @value, an @id, or extensions - + - + - + - To be conformant, instances of this element SHALL include a code from the specified value set. + A communication contact point at a home; attempted contacts for business purposes might intrude privacy and chances are one will contact family or other household members instead of the person one wishes to call. Typically used with urgent cases, or if no other contacts are available. - + - To be conformant, instances of this element SHALL include a code from the specified value set if any of the codes within the value set can apply to the concept being communicated. If the valueset does not cover the concept (based on human review), alternate codings (or, data type allowing, text) may be included instead. + An office contact point. First choice for business related contacts during business hours. - + - Instances are encouraged to draw from the specified codes for interoperability purposes but are not required to do so to be considered conformant. + A temporary contact point. The period can provide more detailed information. - + - Instances are not expected or even encouraged to draw from the specified value set. The value set merely provides examples of the types of concepts intended to be included. + This contact point is no longer in use (or was never correct, but retained for records). + + + + + A telecommunication device that moves and stays with its owner. May have characteristics of all other use codes, suitable for urgent matters, not the first choice for routine business. - + - Indication of the degree of conformance expectations associated with a binding + Use of contact point If the element is present, it must have either a @value, an @id, or extensions - + - - - - - The reference is a local reference to a contained resource. - - - - - The reference to a resource that has to be resolved externally to the resource that includes the reference. - - - - - The resource the reference points to will be found in the same bundle as the resource that includes the reference. - - - - - + - How resource references can be aggregated - If the element is present, it must have either a @value, an @id, or extensions + The metadata about a resource. This is content in the resource that is maintained by the infrastructure. Changes to the content may not always be associated with version changes to the resource. + If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions - - - - + + + + + The version specific identifier, as it appears in the version portion of the url. This values changes when the resource is created, updated, or deleted. + + + + + When the resource last changed - e.g. when the version changed. + + + + + A list of profiles [[[StructureDefinition]]]s that this resource claims to conform to. The URL is a reference to [[[StructureDefinition.url]]]. + + + + + Security labels applied to this resource. These tags connect specific resources to the overall security policy and infrastructure. + + + + + Tags applied to this resource. Tags are intended to to be used to identify and relate resources to process and workflow, and applications are not required to consider the tags when interpreting the meaning of a resource. + + + + + - + + + There is a variety of postal address formats defined around the world. This format defines a superset that is the basis for all addresses around the world. + If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions + + + + + + + The purpose of this address. + + + + + A full text representation of the address. + + + + + This component contains the house number, apartment number, street name, street direction, +P.O. Box number, delivery hints, and similar address information. + + + + + The name of the city, town, village or other community or delivery center. + + + + + Sub-unit of a country with limited sovereignty in a federally organized country. A code may be used if codes are in common use (i.e. US 2 letter state codes). + + + + + A postal code designating a region defined by the postal service. + + + + + Country - a nation as commonly understood or generally accepted. + + + + + Time period when address was/is in use. + + + + + + + - + - If the constraint is violated, the resource is not conformant. + A communication address at a home. - + - If the constraint is violated, the resource is conformant, but it is not necessarily following best practice. + An office address. First choice for business related contacts during business hours. + + + + + A temporary address. The period can provide more detailed information. + + + + + This address is no longer in use (or was never correct, but retained for records). - + - SHALL applications comply with this constraint? + The use of an address If the element is present, it must have either a @value, an @id, or extensions - + @@ -1744,6 +1510,11 @@ A set of rules that describe when the event should occur. + + + A code for the timing pattern. Some codes such as BID are uniquitious, but many instutions define their own additional codes. + + @@ -1945,335 +1716,644 @@ - + - There is a variety of postal address formats defined around the world. This format defines a superset that is the basis for all addresses around the world. + Captures constraints on each element within the resource, profile, or extension. If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions - + - The purpose of this address. + The path identifies the element and is expressed as a "."-separated list of ancestor elements, beginning with the name of the resource or extension. - + - A full text representation of the address. + Codes that define how this element is represented in instances, when the deviation varies from the normal case. - + - This component contains the house number, apartment number, street name, street direction, -P.O. Box number, delivery hints, and similar address information. + The name of this element definition (to refer to it from other element definitions using ElementDefinition.nameReference). This is a unique name referring to a specific set of constraints applied to this element. One use of this is to provide a name to different slices of the same element. - + - The name of the city, town, village or other community or delivery center. + The text to display beside the element indicating its meaning or to use to prompt for the element in a user display or form. - + - Sub-unit of a country with limited sovereignty in a federally organized country. A code may be used if codes are in common use (i.e. US 2 letter state codes). + A code that provides the meaning for the element according to a particular terminology. - + - A postal code designating a region defined by the postal service. + Indicates that the element is sliced into a set of alternative definitions (there are multiple definitions on a single element in the base resource). The set of slices is any elements that come after this in the element sequence that have the same path, until a shorter path occurs (the shorter path terminates the set). - + - Country - a nation as commonly understood or generally accepted. + A concise definition that is shown in the generated XML format that summarizes profiles (used throughout the specification). - + - Time period when address was/is in use. + Provides a complete explanation of the meaning of the data element for human readability. For the case of elements derived from existing elements (e.g. constraints), the definition SHALL be consistent with the base definition, but convey the meaning of the element in the particular context of use of the resource. + + + + + Comments about the use of the element, including notes about how to use the data properly, exceptions to proper use, etc. + + + + + Explains why this element is needed and why it's been constrained as it has. + + + + + Identifies additional names by which this element might also be known. + + + + + The minimum number of times this element SHALL appear in the instance. + + + + + The maximum number of times this element is permitted to appear in the instance. + + + + + The data type or resource that the value of this element is permitted to be. + + + + + Identifies the name of a slice defined elsewhere in the profile whose constraints should be applied to the current element. + + + + + The value that should be used if there is no value stated in the instance. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Implicit meaning that is to be understood when this element is missing. + + + + + Specifies a value that SHALL be exactly the value for this element in the instance. For purposes of comparison, non-signficant whitespace is ignored, and all values must be an exact match (case and accent sensitive). Missing elements/attributes must also be missing. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Specifies a value that the value in the instance SHALL follow - that is, any value in the pattern must be found in the instance. Other additional values may be found too. This is effectively constraint by example. The values of elements present in the pattern must match exactly (case-senstive, accent-sensitive, etc.). + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A sample value for this element demonstrating the type of information that would typically be captured. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Indicates the maximum length in characters that is permitted to be present in conformant instances and which is expected to be supported by conformant consumers that support the element. + + + + + A reference to an invariant that may make additional statements about the cardinality or value in the instance. + + + + + Formal constraints such as co-occurrence and other constraints that can be computationally evaluated within the context of the instance. + + + + + If true, conformant resource authors SHALL be capable of providing a value for the element and resource consumers SHALL be capable of extracting and doing something useful with the data element. If false, the element may be ignored and not supported. + + + + + If true, the value of this element affects the interpretation of the element or resource that contains it, and the value of the element cannot be ignored. Typically, this is used for status, negation and qualification codes. The effect of this is that the element cannot be ignored by systems: they SHALL either recognize the element and process it, and/or a pre-determination has been made that it is not relevant to their particular system. + + + + + Whether the element should be included if a client requests a search with the parameter _summary=true. + + + + + Binds to a value set if this element is coded (code, Coding, CodeableConcept). + + + + + Identifies a concept from an external specification that roughly corresponds to this element. - - - - - A communication address at a home. - - - - - An office address. First choice for business related contacts during business hours. - - - - - A temporary address. The period can provide more detailed information. - - - - - This address is no longer in use (or was never correct, but retained for records). - - - - - + - The use of an address - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - A human's name with the ability to identify parts and usage. + Captures constraints on each element within the resource, profile, or extension. If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions - + - Identifies the purpose for this name. + Allows identification of which elements have their cardinalities impacted by the constraint. Will not be referenced for constraints that do not affect cardinality. - + - A full text representation of the name. + Used to label the constraint in OCL or in short displays incapable of displaying the full human description. - + - The part of a name that links to the genealogy. In some cultures (e.g. Eritrea) the family name of a son is the first name of his father. + Identifies the impact constraint violation has on the conformance of the instance. - + - Given name. + Text that can be used to describe the constraint in messages identifying that the constraint has been violated. - + - Part of the name that is acquired as a title due to academic, legal, employment or nobility status, etc. and that appears at the start of the name. - - - - - Part of the name that is acquired as a title due to academic, legal, employment or nobility status, etc. and that appears at the end of the name. - - - - - Indicates the period of time when this name was valid for the named person. + An XPath expression of constraint that can be executed to see if this constraint is met. - - - - - Known as/conventional/the one you normally use. - - - - - The formal name as registered in an official (government) registry, but which name might not be commonly used. May be called "legal name". - - - - - A temporary name. Name.period can provide more detailed information. This may also be used for temporary names assigned at birth or in emergency situations. - - - - - A name that is used to address the person in an informal manner, but is not part of their formal or usual name. - - - - - Anonymous assigned name, alias, or pseudonym (used to protect a person's identity for privacy reasons). - - - - - This name is no longer in use (or was never correct, but retained for records). - - - - - A name used prior to marriage. Marriage naming customs vary greatly around the world. This name use is for use by applications that collect and store "maiden" names. Though the concept of maiden name is often gender specific, the use of this term is not gender specific. The use of this term does not imply any particular history for a person's name, nor should the maiden name be determined algorithmically. - - - - - + - The use of a human name - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - The metadata about a resource. This is content in the resource that is maintained by the infrastructure. Changes to the content may not always be associated with version changes to the resource. + Captures constraints on each element within the resource, profile, or extension. If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions - + - The version specific identifier, as it appears in the version portion of the url. This values changes when the resource is created, updated, or deleted. + An internal reference to the definition of a mapping. - + - When the resource last changed - e.g. when the version changed. + Identifies the computable language in which mapping.map is expressed. - + - A list of profiles [[[StructureDefinition]]]s that this resource claims to conform to. The URL is a reference to [[[StructureDefinition.url]]]. - - - - - Security labels applied to this resource. These tags connect specific resources to the overall security policy and infrastructure. - - - - - Tags applied to this resource. Tags are intended to to be used to identify and relate resources to process and workflow, and applications are not required to consider the tags when interpreting the meaning of a resource. + Expresses what part of the target specification corresponds to this element. - + - Details for All kinds of technology mediated contact points for a person or organization, including telephone, email, etc. + Captures constraints on each element within the resource, profile, or extension. If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions - + - Telecommunications form for contact point - what communications system is required to make use of the contact. + Name of Data type or Resource that is a(or the) type used for this element. - + - The actual contact point details, in a form that is meaningful to the designated communication system (i.e. phone number or email address). + Identifies a profile structure that SHALL hold for resources or datatypes referenced as the type of this element. Can be a local reference - to another structure in this profile, or a reference to a structure in another profile. - + - Identifies the purpose for the contact point. - - - - - Time period when the contact point was/is in use. + If the type is a reference to another resource, how the resource is or can be aggreated - is it a contained resource, or a reference, and if the context is a bundle, is it included in the bundle. - + + + Captures constraints on each element within the resource, profile, or extension. + If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions + + + + + + + Designates which child elements are used to discriminate between the slices when processing an instance. If one or more discriminators are provided, the value of the child elements in the instance data SHALL completely distinguish which slice the element in the resource matches based on the allowed values for those elements in each of the slices. + + + + + A human-readable text description of how the slicing works. If there is no discriminator, this is required to be present to provide whatever information is possible about how the slices can be differentiated. + + + + + If the matching elements have to occur in the same order as defined in the profile. + + + + + Whether additional slices are allowed or not. When the slices are ordered, profile authors can also say that additional slices are only allowed at the end. + + + + + + + + + Captures constraints on each element within the resource, profile, or extension. + If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions + + + + + + + A descriptive name for this - can be useful for generating implementation artifacts. + + + + + Indicates the degree of conformance expectations associated with this binding - that is, the degree to which the provided value set must be adhered to in the instances. + + + + + Describes the intended use of this particular set of codes. + + + + + Points to the value set or external definition (e.g. implicit value set) that identifies the set of codes to be used. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - The value is a telephone number used for voice calls. Use of full international numbers starting with + is recommended to enable automatic dialing support but not required. - - - - - The value is a fax machine. Use of full international numbers starting with + is recommended to enable automatic dialing support but not required. - - - - - The value is an email address. - - - - - The value is a url. This is intended for various personal contacts including blogs, Twitter, Facebook, etc. Do not use for email addresses. + In XML, this property is represented as an attribute not an element. - + - Telecommunications form for contact point + How a property is represented on the wire If the element is present, it must have either a @value, an @id, or extensions - + - + - + - A communication contact point at a home; attempted contacts for business purposes might intrude privacy and chances are one will contact family or other household members instead of the person one wishes to call. Typically used with urgent cases, or if no other contacts are available. + If the constraint is violated, the resource is not conformant. - + - An office contact point. First choice for business related contacts during business hours. - - - - - A temporary contact point. The period can provide more detailed information. - - - - - This contact point is no longer in use (or was never correct, but retained for records). - - - - - A telecommunication device that moves and stays with its owner. May have characteristics of all other use codes, suitable for urgent matters, not the first choice for routine business. + If the constraint is violated, the resource is conformant, but it is not necessarily following best practice. - + - Use of contact point + SHALL applications comply with this constraint? If the element is present, it must have either a @value, an @id, or extensions - + + + + + + The reference is a local reference to a contained resource. + + + + + The reference to a resource that has to be resolved externally to the resource that includes the reference. + + + + + The resource the reference points to will be found in the same bundle as the resource that includes the reference. + + + + + + + How resource references can be aggregated + If the element is present, it must have either a @value, an @id, or extensions + + + + + + + + + + + + No additional content is allowed other than that described by the slices in this profile. + + + + + Additional content is allowed anywhere in the list. + + + + + Additional content is allowed, but only at the end of the list. Note that using this requires that the slices be ordered, which makes it hard to share uses. This should only be done where absolutely required. + + + + + + + How slices are interpreted when evaluating an instance + If the element is present, it must have either a @value, an @id, or extensions + + + + + + + + + + + + To be conformant, instances of this element SHALL include a code from the specified value set. + + + + + To be conformant, instances of this element SHALL include a code from the specified value set if any of the codes within the value set can apply to the concept being communicated. If the valueset does not cover the concept (based on human review), alternate codings (or, data type allowing, text) may be included instead. + + + + + Instances are encouraged to draw from the specified codes for interoperability purposes but are not required to do so to be considered conformant. + + + + + Instances are not expected or even encouraged to draw from the specified value set. The value set merely provides examples of the types of concepts intended to be included. + + + + + + + Indication of the degree of conformance expectations associated with a binding + If the element is present, it must have either a @value, an @id, or extensions + + + + + + + + + + A resource that includes narrative, extensions, and contained resources. + + + + + + + A human-readable narrative that contains a summary of the resource, and may be used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it "clinically safe" for a human to just read the narrative. Resource definitions may define what content should be represented in the narrative to ensure clinical safety. + + + + + These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, and nor can they have their own independent transaction scope. + + + + + May be used to represent additional information that is not part of the basic definition of the resource. In order to make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. + + + + + May be used to represent additional information that is not part of the basic definition of the resource, and that modifies the understanding of the element that contains it. Usually modifier elements provide negation or qualification. In order to make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. + + + + + + This special resource type is used to represent [operation](operations.html] request and response. It has no other use, and there is no RESTful end=point associated with it. @@ -2321,6 +2401,8 @@ P.O. Box number, delivery hints, and similar address information. + + @@ -2383,6 +2465,8 @@ P.O. Box number, delivery hints, and similar address information. + + @@ -2441,169 +2525,63 @@ P.O. Box number, delivery hints, and similar address information. - - - A resource that includes narrative, extensions, and contained resources. - - - - - - - A human-readable narrative that contains a summary of the resource, and may be used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it "clinically safe" for a human to just read the narrative. Resource definitions may define what content should be represented in the narrative to ensure clinical safety. - - - - - These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, and nor can they have their own independent transaction scope. - - - - - May be used to represent additional information that is not part of the basic definition of the resource. In order to make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. - - - - - May be used to represent additional information that is not part of the basic definition of the resource, and that modifies the understanding of the element that contains it. Usually modifier elements provide negation or qualification. In order to make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. - - - - - - - + - + - The value is not known + An encounter during which the patient is hospitalized and stays overnight. - + - The source human does not know the value + An encounter during which the patient is not hospitalized overnight. - + - There is reason to expect (from the workflow) that the value may become known + An encounter where the patient visits the practitioner in his/her office, e.g. a G.P. visit. - + - The workflow didn't lead to this value being known + An encounter where the patient needs urgent care. - + - The information is not available due to security, privacy or related reasons + An encounter where the practitioner visits the patient at his/her home. - + - The source system wasn't capable of supporting this element + An encounter taking place outside the regular environment for giving care. - + - The content of the data is represented in the resource narrative + An encounter where the patient needs more prolonged treatment or investigations than outpatients, but who do not need to stay in the hospital overnight. - + - Some system or workflow process error means that the information is not available - - - - - - - - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - - - Male - - - - - Female + An encounter that takes place where the patient and practitioner do not physically meet but use electronic means for contact. - Other - - - - - Unknown + Any other encounter type that is not described by one of the other values. Where this is used it is expected that an implementer will include an extension value to define what the actual other type is. - + If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - Boolean true - - - - - Boolean false - - - - - The content is greater than zero, but too small to be quantified - - - - - The specific quantity is not known, but is known to be non-zero and is not specified because it makes up the bulk of the material - - - - - The value is no longer available - - - - - The are no known applicable values in this context - - - - - - - - If the element is present, it must have either a @value, an @id, or extensions - - - - + @@ -2789,6 +2767,11 @@ P.O. Box number, delivery hints, and similar address information.An oid represented as a URI + + + An integer with a value that is positive (e.g. >0) + + A sequence of Unicode characters @@ -2799,6 +2782,11 @@ P.O. Box number, delivery hints, and similar address information.A time during the day, with no date specified + + + An integer with a value that is not negative (e.g. >= 0) + + String of characters used to identify a name or a resource @@ -2822,63 +2810,198 @@ P.O. Box number, delivery hints, and similar address information. - + - + - The Encounter has not yet started. + Display the note. - + - The Patient is present for the encounter, however is not currently meeting with a practitioner. + Print the note on the form. - + - The Encounter has begun and the patient is present / the practitioner and the patient are meeting. - - - - - The Encounter has begun, but the patient is temporarily on leave. - - - - - The Encounter has ended. - - - - - The Encounter has ended before it has begun. + Print the note for the operator. - + If the element is present, it must have either a @value, an @id, or extensions - + - + + + + The value is not known + + + + + The source human does not know the value + + + + + There is reason to expect (from the workflow) that the value may become known + + + + + The workflow didn't lead to this value being known + + + + + The information is not available due to security, privacy or related reasons + + + + + The source system wasn't capable of supporting this element + + + + + The content of the data is represented in the resource narrative + + + + + Some system or workflow process error means that the information is not available + + - + If the element is present, it must have either a @value, an @id, or extensions - + + + + + + + + + This is a preliminary composition or document (also known as initial or interim). The content may be incomplete or unverified. + + + + + This version of the composition is complete and verified by an appropriate person and no further work is planned. Any subsequent updates would be on a new version of the composition. + + + + + The composition or document has been modified subsequent to being released as "final", and is complete and verified by an authorized person. The modifications added new information to the composition or document, but did not revise existing content. + + + + + The composition or document has been modified subsequent to being released as "final", and is complete and verified by an authorized person. + + + + + The composition or document was originally created/issued in error, and this is an amendment that marks that the entire series should not be considered as valid. + + + + + + + + If the element is present, it must have either a @value, an @id, or extensions + + + + + + + + + + + + The processing completed without errors. + + + + + The processing identified with errors. + + + + + + + + If the element is present, it must have either a @value, an @id, or extensions + + + + + + + + + + + + This is the current reference for this document. + + + + + This reference has been superceded by another reference. + + + + + This reference was created in error. + + + + + + + + If the element is present, it must have either a @value, an @id, or extensions + + + + + + + + + + + + + + + If the element is present, it must have either a @value, an @id, or extensions + + + + @@ -2947,203 +3070,38 @@ P.O. Box number, delivery hints, and similar address information. - + - + - This resource is still under development + Male - + - This resource is ready for normal use + Female - + - This resource has been withdrawn or superceded and should no longer be used + Other + + + + + Unknown - + If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - This Questionnaire is not ready for official use. - - - - - This Questionnaire is ready for use. - - - - - This Questionnaire should no longer be used to gather data. - - - - - - - - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - - - This is the current reference for this document. - - - - - This reference has been superseded by another reference. - - - - - This reference was created in error. - - - - - - - - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - - - The processing completed without errors. - - - - - The processing identified with errors. - - - - - - - - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - - - Display the note. - - - - - Print the note on the form. - - - - - Print the note for the operator. - - - - - - - - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - - - Search parameter SHALL be a number (a whole number, or a decimal). - - - - - Search parameter is on a date/time. The date format is the standard XML format, though other formats may be supported. - - - - - Search parameter is a simple string, like a name part. Search is case-insensitive and accent-insensitive. May match just the start of a string. String parameters may contain spaces. - - - - - Search parameter on a coded element or identifier. May be used to search through the text, displayname, code and code/codesystem (for codes) and label, system and key (for identifier). Its value is either a string or a pair of namespace and value, separated by a "|", depending on the modifier used. - - - - - A reference to another resource. - - - - - A composite search parameter that combines a search on two values together. - - - - - A search parameter that searches on a quantity. - - - - - A search parameter that searches on a URI (RFC 3986). - - - - - - - - If the element is present, it must have either a @value, an @id, or extensions - - - - + @@ -3329,6 +3287,11 @@ P.O. Box number, delivery hints, and similar address information.An oid represented as a URI + + + An integer with a value that is positive (e.g. >0) + + A sequence of Unicode characters @@ -3339,6 +3302,11 @@ P.O. Box number, delivery hints, and similar address information.A time during the day, with no date specified + + + An integer with a value that is not negative (e.g. >= 0) + + String of characters used to identify a name or a resource @@ -3349,11 +3317,6 @@ P.O. Box number, delivery hints, and similar address information.A UUID, represented as a URI - - - Prospective warnings of potential issues when providing care to the patient. - - Risk of harmful or undesirable, physiological response which is unique to an individual and associated with exposure to a substance. @@ -3386,7 +3349,7 @@ P.O. Box number, delivery hints, and similar address information. - Record details about the anatomical location of a specimen or body part, including precise localisation information. This resource may be used when a coded concept does not provide the necessary detail needed for the use case. + Record details about the anatomical location of a specimen or body part. This resource may be used when a coded concept does not provide the necessary detail needed for the use case. @@ -3399,11 +3362,6 @@ P.O. Box number, delivery hints, and similar address information.Describes the intention of how one or more practitioners intend to deliver care for a particular patient for a period of time, possibly limited to care for a specific condition or set of conditions. - - - Describes the intention of how one or more practitioners intend to deliver care for a particular patient for a period of time, possibly limited to care for a specific condition or set of conditions. - - A provider issued list of services and products provided, or to be provided, to a patient which is provided to an insurer for payment recovery. @@ -3549,9 +3507,14 @@ P.O. Box number, delivery hints, and similar address information.This resource provides: the claim details; adjudication details from the processing of a Claim; and optionally account balance information, for informing the subscriber of the benefits provided. - + - Significant health events and conditions for people related to the subject relevant in the context of care for the subject. + Significant health events and conditions for a person related to the patient relevant in the context of care for the patient. + + + + + Prospective warnings of potential issues when providing care to the patient. @@ -3674,11 +3637,6 @@ P.O. Box number, delivery hints, and similar address information.A formally or informally recognized grouping of people or organizations formed for the purpose of achieving some form of collective action. Includes companies, institutions, corporations, departments, community groups, healthcare practice groups, etc. - - - Other is a conformant for handling resource concepts not yet defined for FHIR or outside HL7's scope of interest. - - Demographics and other administrative information about an individual or animal receiving care or other health-related services. @@ -3822,63 +3780,118 @@ P.O. Box number, delivery hints, and similar address information. - + - - - An encounter during which the patient is hospitalized and stays overnight. - - - - - An encounter during which the patient is not hospitalized overnight. - - - - - An encounter where the patient visits the practitioner in his/her office, e.g. a G.P. visit. - - - - - An encounter where the patient needs urgent care. - - - - - An encounter where the practitioner visits the patient at his/her home. - - - - - An encounter taking place outside the regular environment for giving care. - - - - - An encounter where the patient needs more prolonged treatment or investigations than outpatients, but who do not need to stay in the hospital overnight. - - - - - An encounter that takes place where the patient and practitioner do not physically meet but use electronic means for contact. - - - - - Any other encounter type that is not described by one of the other values. Where this is used it is expected that an implementer will include an extension value to define what the actual other type is. - - - + If the element is present, it must have either a @value, an @id, or extensions - + + + + + + + + + Boolean true + + + + + Boolean false + + + + + The content is greater than zero, but too small to be quantified + + + + + The specific quantity is not known, but is known to be non-zero and is not specified because it makes up the bulk of the material + + + + + The value is no longer available + + + + + The are no known applicable values in this context + + + + + + + + If the element is present, it must have either a @value, an @id, or extensions + + + + + + + + + + + + Search parameter SHALL be a number (a whole number, or a decimal). + + + + + Search parameter is on a date/time. The date format is the standard XML format, though other formats may be supported. + + + + + Search parameter is a simple string, like a name part. Search is case-insensitive and accent-insensitive. May match just the start of a string. String parameters may contain spaces. + + + + + Search parameter on a coded element or identifier. May be used to search through the text, displayname, code and code/codesystem (for codes) and label, system and key (for identifier). Its value is either a string or a pair of namespace and value, separated by a "|", depending on the modifier used. + + + + + A reference to another resource. + + + + + A composite search parameter that combines a search on two values together. + + + + + A search parameter that searches on a quantity. + + + + + A search parameter that searches on a URI (RFC 3986). + + + + + + + + If the element is present, it must have either a @value, an @id, or extensions + + + + @@ -3917,28 +3930,53 @@ P.O. Box number, delivery hints, and similar address information. - + + + + The Encounter has not yet started. + + + + + The Patient is present for the encounter, however is not currently meeting with a practitioner. + + + + + The Encounter has begun and the patient is present / the practitioner and the patient are meeting. + + + + + The Encounter has begun, but the patient is temporarily on leave. + + + + + The Encounter has ended. + + + + + The Encounter has ended before it has begun. + + - + If the element is present, it must have either a @value, an @id, or extensions - + - - - Prospective warnings of potential issues when providing care to the patient. - - Risk of harmful or undesirable, physiological response which is unique to an individual and associated with exposure to a substance. @@ -3971,7 +4009,7 @@ P.O. Box number, delivery hints, and similar address information. - Record details about the anatomical location of a specimen or body part, including precise localisation information. This resource may be used when a coded concept does not provide the necessary detail needed for the use case. + Record details about the anatomical location of a specimen or body part. This resource may be used when a coded concept does not provide the necessary detail needed for the use case. @@ -3984,11 +4022,6 @@ P.O. Box number, delivery hints, and similar address information.Describes the intention of how one or more practitioners intend to deliver care for a particular patient for a period of time, possibly limited to care for a specific condition or set of conditions. - - - Describes the intention of how one or more practitioners intend to deliver care for a particular patient for a period of time, possibly limited to care for a specific condition or set of conditions. - - A provider issued list of services and products provided, or to be provided, to a patient which is provided to an insurer for payment recovery. @@ -4134,9 +4167,14 @@ P.O. Box number, delivery hints, and similar address information.This resource provides: the claim details; adjudication details from the processing of a Claim; and optionally account balance information, for informing the subscriber of the benefits provided. - + - Significant health events and conditions for people related to the subject relevant in the context of care for the subject. + Significant health events and conditions for a person related to the patient relevant in the context of care for the patient. + + + + + Prospective warnings of potential issues when providing care to the patient. @@ -4259,11 +4297,6 @@ P.O. Box number, delivery hints, and similar address information.A formally or informally recognized grouping of people or organizations formed for the purpose of achieving some form of collective action. Includes companies, institutions, corporations, departments, community groups, healthcare practice groups, etc. - - - Other is a conformant for handling resource concepts not yet defined for FHIR or outside HL7's scope of interest. - - Demographics and other administrative information about an individual or animal receiving care or other health-related services. @@ -4407,137 +4440,80 @@ P.O. Box number, delivery hints, and similar address information. - + - + - This is a preliminary composition or document (also known as initial or interim). The content may be incomplete or unverified. + This Questionnaire is not ready for official use. - + - This version of the composition is complete and verified by an appropriate person and no further work is planned. Any subsequent updates would be on a new version of the composition. + This Questionnaire is ready for use. - + - The composition or document has been modified subsequent to being released as "final", and is complete and verified by an authorized person. The modifications added new information to the composition or document, but did not revise existing content. - - - - - The composition or document has been modified subsequent to being released as "final", and is complete and verified by an authorized person. - - - - - The composition or document was originally created/issued in error, and this is an amendment that marks that the entire series should not be considered as valid. + This Questionnaire should no longer be used to gather data. - + If the element is present, it must have either a @value, an @id, or extensions - + - - - - - - - - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - Prospective warnings of potential issues when providing care to the patient. - - - - - Prospective warnings of potential issues when providing care to the patient. - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - Identifier assigned to the alert for external use (outside the FHIR environment). - - - - - Allows an alert to be divided into different categories like clinical, administrative etc. - - - - - Supports basic workflow. - - - - - The person who this alert concerns. - - - - - The person or device that created the alert. - - - - - The coded value or textual component of the alert to display to the user. - - - - - - - + + + + This resource is still under development + + - A current alert that should be displayed to a user. A system may use the category to determine which roles should view the alert. + This resource is ready for normal use - + - The alert does not need to be displayed any more. - - - - - The alert was added in error, and should no longer be displayed. + This resource has been withdrawn or superceded and should no longer be used - + - Indicates whether this alert is active and needs to be displayed to a user, or whether it is no longer needed or entered in error + If the element is present, it must have either a @value, an @id, or extensions - - - - + + + + + + + + + + + + + If the element is present, it must have either a @value, an @id, or extensions + + + + + + @@ -4677,91 +4653,6 @@ P.O. Box number, delivery hints, and similar address information. - - - - - There is a low level of clinical certainty that the reaction was caused by the identified Substance. - - - - - There is a high level of clinical certainty that the reaction was caused by the identified Substance. - - - - - There is a very high level of clinical certainty that the reaction was due to the identified Substance, which may include clinical evidence by testing or rechallenge. - - - - - - - Statement about the degree of clinical certainty that a Specific Substance was the cause of the Manifestation in an reaction event - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - - - Immune mediated reaction, including allergic reactions and hypersensitivities. - - - - - A non-immune mediated reaction, which can include pseudoallergic reactions, side effects, intolerances, drug toxicities (eg to Gentamicin), drug-drug interactions, food-drug interactions, and drug-disease interactions. - - - - - - - Identification of the underlying physiological mechanism for a Reaction Risk - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - - - Causes mild physiological effects. - - - - - Causes moderate physiological effects. - - - - - Causes severe physiological effects. - - - - - - - Clinical assessment of the severity of a reaction event as a whole, potentially considering multiple different manifestations - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - @@ -4792,36 +4683,6 @@ P.O. Box number, delivery hints, and similar address information. - - - - - Any substance consumed to provide nutritional support for the body. - - - - - Substances administered to achieve a physiological effect. - - - - - Substances that are encountered in the environment. - - - - - - - Category of an identified Substance - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - @@ -4862,6 +4723,121 @@ P.O. Box number, delivery hints, and similar address information. + + + + + Immune mediated reaction, including allergic reactions and hypersensitivities. + + + + + A non-immune mediated reaction, which can include pseudoallergic reactions, side effects, intolerances, drug toxicities (eg to Gentamicin), drug-drug interactions, food-drug interactions, and drug-disease interactions. + + + + + + + Identification of the underlying physiological mechanism for a Reaction Risk + If the element is present, it must have either a @value, an @id, or extensions + + + + + + + + + + + + Any substance consumed to provide nutritional support for the body. + + + + + Substances administered to achieve a physiological effect. + + + + + Substances that are encountered in the environment. + + + + + + + Category of an identified Substance + If the element is present, it must have either a @value, an @id, or extensions + + + + + + + + + + + + There is a low level of clinical certainty that the reaction was caused by the identified Substance. + + + + + There is a high level of clinical certainty that the reaction was caused by the identified Substance. + + + + + There is a very high level of clinical certainty that the reaction was due to the identified Substance, which may include clinical evidence by testing or rechallenge. + + + + + + + Statement about the degree of clinical certainty that a Specific Substance was the cause of the Manifestation in an reaction event + If the element is present, it must have either a @value, an @id, or extensions + + + + + + + + + + + + Causes mild physiological effects. + + + + + Causes moderate physiological effects. + + + + + Causes severe physiological effects. + + + + + + + Clinical assessment of the severity of a reaction event as a whole, potentially considering multiple different manifestations + If the element is present, it must have either a @value, an @id, or extensions + + + + + + + A booking of a healthcare event among patient(s), practitioner(s), related person(s) and/or device(s) for a specific date/time. This may result in one or more Encounter(s). @@ -4895,7 +4871,7 @@ P.O. Box number, delivery hints, and similar address information.The reason that this appointment is being scheduled, this is more clinical than administrative. - + The priority of the appointment. Can be used to make informed decisions if needing to re-prioritize appointments. (The iCal Standard specifies 0 as undefined, 1 as highest, 9 as lowest priority). @@ -5256,6 +5232,11 @@ P.O. Box number, delivery hints, and similar address information.A free text description of the outcome of the event. + + + The purposeOfUse (reason) that was used during the event being recorded. + + @@ -5317,6 +5298,11 @@ P.O. Box number, delivery hints, and similar address information.Logical network location for application activity, if the activity has a network location. + + + The purposeOfUse (reason) specific to this participant that was used during the event being recorded. + + @@ -5387,7 +5373,7 @@ P.O. Box number, delivery hints, and similar address information. - Object type being audited. + The type of the object that was involved in this audit event. @@ -5469,7 +5455,7 @@ P.O. Box number, delivery hints, and similar address information. - A logical object related to the event. (Deprecated). + A logical object related to a health record event. This is any healthcare specific resource (object) not restricted to FHIR defined Resources. @@ -5576,7 +5562,7 @@ P.O. Box number, delivery hints, and similar address information. - Code representing the functional application role of Participant Object being audited + Code representing the role the Object played in the event If the element is present, it must have either a @value, an @id, or extensions @@ -5585,6 +5571,121 @@ P.O. Box number, delivery hints, and similar address information. + + + + + The operation completed successfully (whether with warnings or not). + + + + + The action was not successful due to some kind of catered for error (often equivalent to an HTTP 400 response). + + + + + The action was not successful due to some kind of unexpected error (often equivalent to an HTTP 500 response). + + + + + An error of such magnitude occurred that the system is not longer available for use (i.e. the system died). + + + + + + + Indicates whether the event succeeded or failed + If the element is present, it must have either a @value, an @id, or extensions + + + + + + + + + + + + Create a new database object, such as Placing an Order. + + + + + Display or print data, such as a Doctor Census. + + + + + Update data, such as Revise Patient Information. + + + + + Delete items, such as a doctor master file record. + + + + + Perform a system or application function such as log-on, program execution or use of an object's method, or perform a query/search operation. + + + + + + + Indicator for type of action performed during the event that generated the audit. + If the element is present, it must have either a @value, an @id, or extensions + + + + + + + + + + + + Machine Name, including DNS name. + + + + + IP Address. + + + + + Telephone Number. + + + + + Email address. + + + + + URI (User directory, HTTP-PUT, ftp, etc.). + + + + + + + The type of network access point of this participant in the audit event + If the element is present, it must have either a @value, an @id, or extensions + + + + + + + @@ -5666,7 +5767,7 @@ P.O. Box number, delivery hints, and similar address information. - Identifier for the data life-cycle stage for the participant object + Identifier for the data life-cycle stage for the object If the element is present, it must have either a @value, an @id, or extensions @@ -5675,46 +5776,6 @@ P.O. Box number, delivery hints, and similar address information. - - - - - Create a new database object, such as Placing an Order. - - - - - Display or print data, such as a Doctor Census. - - - - - Update data, such as Revise Patient Information. - - - - - Delete items, such as a doctor master file record. - - - - - Perform a system or application function such as log-on, program execution or use of an object's method, or perform a query/search operation. - - - - - - - Indicator for type of action performed during the event that generated the audit. - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - @@ -5741,7 +5802,7 @@ P.O. Box number, delivery hints, and similar address information. - Code for the participant object type being audited + Code for the object type involved audited If the element is present, it must have either a @value, an @id, or extensions @@ -5750,81 +5811,6 @@ P.O. Box number, delivery hints, and similar address information. - - - - - The operation completed successfully (whether with warnings or not). - - - - - The action was not successful due to some kind of catered for error (often equivalent to an HTTP 400 response). - - - - - The action was not successful due to some kind of unexpected error (often equivalent to an HTTP 500 response). - - - - - An error of such magnitude occurred that the system is not longer available for use (i.e. the system died). - - - - - - - Indicates whether the event succeeded or failed - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - - - Machine Name, including DNS name. - - - - - IP Address. - - - - - Telephone Number. - - - - - Email address. - - - - - URI (User directory, HTTP-PUT, ftp, etc.). - - - - - - - The type of network access point that originated the audit event - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - Basic is used for handling concepts not yet defined in FHIR, narrative-only resources that don't map to an existing resource, and custom resources not appropriate for inclusion in the FHIR specification. @@ -5896,30 +5882,35 @@ P.O. Box number, delivery hints, and similar address information. - Record details about the anatomical location of a specimen or body part, including precise localisation information. This resource may be used when a coded concept does not provide the necessary detail needed for the use case. + Record details about the anatomical location of a specimen or body part. This resource may be used when a coded concept does not provide the necessary detail needed for the use case. - Record details about the anatomical location of a specimen or body part, including precise localisation information. This resource may be used when a coded concept does not provide the necessary detail needed for the use case. + Record details about the anatomical location of a specimen or body part. This resource may be used when a coded concept does not provide the necessary detail needed for the use case. If the element is present, it must have either a @value, an @id, or extensions + + + The person to which the body site belongs. + + Identifier for this instance of the anatomical location. - + - The Specific and identified anatomical location. + Named anatomical location - ideally would be coded where possible. - + - Qualifiers to identify non-specific location eg 5cm (distance) inferior (aspect) to the tibial tuberosity (landmark). There may be more than one relative location required to provide a cross reference. + Modifier to refine the anatomical location. These include modifiers for laterality, relative location, directionality, number, and plane. @@ -5936,63 +5927,6 @@ P.O. Box number, delivery hints, and similar address information. - - - Record details about the anatomical location of a specimen or body part, including precise localisation information. This resource may be used when a coded concept does not provide the necessary detail needed for the use case. - - - - - - - Named anatomical location - ideally would be coded where possible. - - - - - Specify lateraility of the anatomical location. - - - - - Identify the specific anatomical site out of multiple eg tenth rib; fourth vertebra; second toe. - - - - - Line describing the position of a vertical anatomical plane in the body. - - - - - - - - - Record details about the anatomical location of a specimen or body part, including precise localisation information. This resource may be used when a coded concept does not provide the necessary detail needed for the use case. - - - - - - - Identified anatomical landmark from which to specify relative anatomical location. - - - - - Qualifier to identify which direction the anatomical location is in relation to the identified landmark. - - - - - Distance of location from the identified landmark. - - - - - - A container for a collection of resources. @@ -6016,7 +5950,7 @@ P.O. Box number, delivery hints, and similar address information.The base URL for the service that provided these resources. All relative URLs are relative to this one (equivalent to xml:base). - + If a set of search matches, this is the total number of matches for the search (as opposed to the number of results in this bundle). @@ -6230,31 +6164,6 @@ P.O. Box number, delivery hints, and similar address information. - - - - - This resource matched the search specification. - - - - - This resource is returned because it is referred to from another resource in the search set. - - - - - - - Why an entry is in the result set - whether it's included as a match or because of an _include requirement - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - @@ -6305,6 +6214,31 @@ P.O. Box number, delivery hints, and similar address information. + + + + + This resource matched the search specification. + + + + + This resource is returned because it is referred to from another resource in the search set. + + + + + + + Why an entry is in the result set - whether it's included as a match or because of an _include requirement + If the element is present, it must have either a @value, an @id, or extensions + + + + + + + Describes the intention of how one or more practitioners intend to deliver care for a particular patient for a period of time, possibly limited to care for a specific condition or set of conditions. @@ -6338,22 +6272,37 @@ P.O. Box number, delivery hints, and similar address information.Indicates when the plan did (or is intended to) come into effect and end. + + + Identifies the individual(s) or ogranization who is responsible for the content of the care plan. + + Identifies the most recent date on which the plan has been revised. + + + Identifies what "kind" of plan this is to support differentiation between multiple co-existing plans. E.g. "Home health", "psychiatric", "asthma", "disease management", etc. + + Identifies the conditions/problems/concerns/diagnoses/etc. whose management and/or mitigation are handled by this plan. + + + Identifies portions of the patient's record that specifically influenced the formation of the plan. These might include co-morbidities, recent procedures, limitations, recent assessments, etc. + + Identifies all people and organizations who are expected to be involved in the care envisioned by this plan. - + Describes the intended objective(s) of carrying out the Care Plan. @@ -6393,37 +6342,6 @@ P.O. Box number, delivery hints, and similar address information. - - - Describes the intention of how one or more practitioners intend to deliver care for a particular patient for a period of time, possibly limited to care for a specific condition or set of conditions. - - - - - - - Human-readable description of a specific desired objective of the care plan. - - - - - Indicates whether the goal has been reached and is still considered relevant. - - - - - Any comments related to the goal. - - - - - The identified conditions that this goal relates to - the condition that caused it to be created, or that it is intended to address. - - - - - - Describes the intention of how one or more practitioners intend to deliver care for a particular patient for a period of time, possibly limited to care for a specific condition or set of conditions. @@ -6431,21 +6349,6 @@ P.O. Box number, delivery hints, and similar address information. - - - Internal reference that identifies the goals that this activity is intended to contribute towards meeting. - - - - - Identifies what progress is being made for the specific activity. - - - - - If true, indicates that the described activity is one that must NOT be engaged in when following the plan. - - Resources that describe follow-on actions resulting from the plan, such as drug prescriptions, encounter records, appointments, etc. @@ -6456,21 +6359,21 @@ P.O. Box number, delivery hints, and similar address information.Notes about the execution of the activity. - + The details of the proposed activity represented in a specific resource. - + - A simple summary of details suitable for a general care plan system (e.g. form driven) that doesn't know about specific resources such as procedure etc. + A simple summary of a planned activity suitable for a general care plan system (e.g. form driven) that doesn't know about specific resources such as procedure etc. - + Describes the intention of how one or more practitioners intend to deliver care for a particular patient for a period of time, possibly limited to care for a specific condition or set of conditions. @@ -6484,7 +6387,34 @@ P.O. Box number, delivery hints, and similar address information. - Detailed description of the type of activity. E.g. What lab test, what procedure, what kind of encounter. + Detailed description of the type of planned activity. E.g. What lab test, what procedure, what kind of encounter. + + + + + Provides the health condition(s) or other rationale that drove the inclusion of this particular activity as part of the plan. + + + + + + + Internal reference that identifies the goals that this activity is intended to contribute towards meeting. + + + + + Identifies what progress is being made for the specific activity. + + + + + Provides reason why the activity isn't yet started, is on hold, was cancelled, etc. + + + + + If true, indicates that the described activity is one that must NOT be engaged in when following the plan. @@ -6507,7 +6437,7 @@ P.O. Box number, delivery hints, and similar address information. - Identifies the food, drug or other product being consumed or supplied in the activity. + Identifies the food, drug or other product to be consumed or supplied in the activity. @@ -6517,12 +6447,12 @@ P.O. Box number, delivery hints, and similar address information. - Identifies the quantity expected to be supplied. + Identifies the quantity expected to be supplied, addministered or consumed by the subject. - + - This provides a textual description of constraints on the activity occurrence, including relation to other activities. It may also include objectives, pre-conditions and end-conditions. Finally, it may convey specifics about the activity such as body site, method, route, etc. + This provides a textual description of constraints on the intended activity occurrence, including relation to other activities. It may also include objectives, pre-conditions and end-conditions. Finally, it may convey specifics about the activity such as body site, method, route, etc. @@ -6559,6 +6489,51 @@ P.O. Box number, delivery hints, and similar address information. + + + + + Activity is planned but no action has yet been taken. + + + + + Appointment or other booking has occurred but activity has not yet begun. + + + + + Activity has been started but is not yet complete. + + + + + Activity was started but has temporarily ceased with an expectation of resumption at a future time. + + + + + The activities have been completed (more or less) as planned. + + + + + The activities have been ended prior to completion (perhaps even before they were started). + + + + + + + Indicates where the activity is at in its overall life cycle + If the element is present, it must have either a @value, an @id, or extensions + + + + + + + @@ -6609,204 +6584,6 @@ P.O. Box number, delivery hints, and similar address information. - - - - - The goal is being sought but has not yet been reached. (Also applies if goal was reached in the past but there has been regression and goal is being sought again). - - - - - The goal has been met and no further action is needed. - - - - - The goal has been met, but ongoing activity is needed to sustain the goal objective. - - - - - The goal is no longer being sought. - - - - - - - Indicates whether the goal has been met and is still being targeted - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - - - Activity is planned but no action has yet been taken. - - - - - Appointment or other booking has occurred but activity has not yet begun. - - - - - Activity has been started but is not yet complete. - - - - - Activity was started but has temporarily ceased with an expectation of resumption at a future time. - - - - - The activities have been completed (more or less) as planned. - - - - - The activities have been ended prior to completion (perhaps even before they were started). - - - - - - - Indicates where the activity is at in its overall life cycle - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - Describes the intention of how one or more practitioners intend to deliver care for a particular patient for a period of time, possibly limited to care for a specific condition or set of conditions. - - - - - Describes the intention of how one or more practitioners intend to deliver care for a particular patient for a period of time, possibly limited to care for a specific condition or set of conditions. - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - This records identifiers associated with this care plan that are defined by business processed and/ or used to refer to it when a direct URL reference to the resource itself is not appropriate (e.g. in CDA documents, or in written / printed documentation). - - - - - Identifies the patient/subject whose intended care is described by the plan. - - - - - Indicates whether the plan is currently being acted upon, represents future intentions or is now just historical record. - - - - - Indicates when the plan did (or is intended to) come into effect and end. - - - - - Identifies the most recent date on which the plan has been revised. - - - - - Identifies the conditions/problems/concerns/diagnoses/etc. whose management and/or mitigation are handled by this plan. - - - - - Identifies all people and organizations who are expected to be involved in the care envisioned by this plan. - - - - - General notes about the care plan not covered elsewhere. - - - - - Describes the intended objective(s) of carrying out the Care Plan. - - - - - Identifies an action that is planned to happen as part of the careplan. For example, a medication to be used, lab tests to perform, self-monitoring, education, etc. - - - - - - - - - Describes the intention of how one or more practitioners intend to deliver care for a particular patient for a period of time, possibly limited to care for a specific condition or set of conditions. - - - - - - - Indicates specific responsibility of an individual within the care plan. E.g. "Primary physician", "Team coordinator", "Caregiver", etc. - - - - - The specific person or organization who is participating/expected to participate in the care plan. - - - - - - - - - - - The plan is in development or awaiting use but is not yet intended to be acted upon. - - - - - The plan is intended to be followed and used as part of patient care. - - - - - The plan is no longer in use and is not expected to be followed or used in patient care. - - - - - - - Indicates whether the plan is currently being acted upon, represents future intentions or is now just historical record. - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - A provider issued list of services and products provided, or to be provided, to a patient which is provided to an insurer for payment recovery. @@ -7007,7 +6784,7 @@ P.O. Box number, delivery hints, and similar address information. - + Sequence of diagnosis which serves to order and provide a link. @@ -7028,7 +6805,7 @@ P.O. Box number, delivery hints, and similar address information. - + A service line item. @@ -7079,7 +6856,7 @@ P.O. Box number, delivery hints, and similar address information. - + A service line number. @@ -7094,7 +6871,7 @@ P.O. Box number, delivery hints, and similar address information.The practitioner who is responsible for the services rendered to the patient. - + Diagnosis applicable for this service or product line. @@ -7175,7 +6952,7 @@ P.O. Box number, delivery hints, and similar address information. - + A service line number. @@ -7236,7 +7013,7 @@ P.O. Box number, delivery hints, and similar address information. - + A service line number. @@ -7337,6 +7114,41 @@ P.O. Box number, delivery hints, and similar address information. + + + + + The treatment is complete and this represents a Claim for the services. + + + + + The treatment is proposed and this represents a Pre-authorization for the services. + + + + + The treatment is proposed and this represents a Pre-determination for the services. + + + + + A locally defined or otherwise resolved status. + + + + + + + Complete, proposed, exploratory, other + If the element is present, it must have either a @value, an @id, or extensions + + + + + + + @@ -7377,41 +7189,6 @@ P.O. Box number, delivery hints, and similar address information. - - - - - The treatment is complete and this represents a Claim for the services. - - - - - The treatment is proposed and this represents a Pre-authorization for the services. - - - - - The treatment is proposed and this represents a Pre-determination for the services. - - - - - A locally defined or otherwise resolved status. - - - - - - - Complete, proposed, exploratory, other - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - This resource provides the adjudication details from the processing of a Claim resource. @@ -7566,12 +7343,12 @@ P.O. Box number, delivery hints, and similar address information. - + A service line number. - + A list of note references to the notes provided below. @@ -7623,7 +7400,7 @@ P.O. Box number, delivery hints, and similar address information. - + A service line number. @@ -7675,7 +7452,7 @@ P.O. Box number, delivery hints, and similar address information. - + A service line number. @@ -7722,7 +7499,7 @@ P.O. Box number, delivery hints, and similar address information. - + List of input service items which this service line is intended to replace. @@ -7737,7 +7514,7 @@ P.O. Box number, delivery hints, and similar address information.The fee charged for the professional service or product.. - + A list of note references to the notes provided below. @@ -7841,17 +7618,17 @@ P.O. Box number, delivery hints, and similar address information. - + The sequence number of the line item submitted which contains the error. This value is ommitted when the error is elsewhere. - + The sequence number of the addition within the line item submitted which contains the error. This value is ommitted when the error is not related to an Addition. - + The sequence number of the addition within the line item submitted which contains the error. This value is ommitted when the error is not related to an Addition. @@ -7872,7 +7649,7 @@ P.O. Box number, delivery hints, and similar address information. - + An integer associated with each note which may be referred to from each service line item. @@ -7898,7 +7675,7 @@ P.O. Box number, delivery hints, and similar address information. - + A service line item. @@ -7960,12 +7737,17 @@ P.O. Box number, delivery hints, and similar address information.The patient being asssesed. - + The clinician performing the assessment. - + + + Identifies the workflow status of the assessment. + + + The point in time at which the assessment was concluded (not when it was recorded). @@ -8027,7 +7809,7 @@ P.O. Box number, delivery hints, and similar address information.Estimate of likely outcome. - + Plan of action after assessment. @@ -8104,6 +7886,36 @@ P.O. Box number, delivery hints, and similar address information. + + + + + The assessment is still on-going and results are not yet final. + + + + + The assessment is done and the results are final. + + + + + This assessment was never actually done and the record is erroneous (e.g. Wrong patient). + + + + + + + The workflow state of a clinical impression + If the element is present, it must have either a @value, an @id, or extensions + + + + + + + An occurrence of information being transmitted. E.g., an alert that was sent to a responsible provider, a public health agency was notified about a reportable condition. @@ -8124,22 +7936,22 @@ P.O. Box number, delivery hints, and similar address information. - The type of message such as alert, notification, reminder, instruction, etc. + The type of message conveyed such as alert, notification, reminder, instruction, etc. - The entity (e.g., person, organization, clinical information system, or device) which is the source of the communication. + The entity (e.g., person, organization, clinical information system, or device) which was the source of the communication. - The entity (e.g., person, organization, clinical information system, or device) which is the target of the communication. + The entity (e.g., person, organization, clinical information system, or device) which was the target of the communication. - Text, attachment(s), or resource(s) to be communicated to the recipient. + Text, attachment(s), or resource(s) that was communicated to the recipient. @@ -8174,7 +7986,7 @@ P.O. Box number, delivery hints, and similar address information. - The patient who is the focus of this communication. + The patient who was the focus of this communication. @@ -8260,12 +8072,12 @@ P.O. Box number, delivery hints, and similar address information. - The type of message such as alert, notification, reminder, instruction, etc. + The type of message to be sent such as alert, notification, reminder, instruction, etc. - The entity (e.g., person, organization, clinical information system, or device) which is the source of the communication. + The entity (e.g., person, organization, clinical information system, or device) which is to be the source of the communication. @@ -8280,7 +8092,7 @@ P.O. Box number, delivery hints, and similar address information. - The communication medium, e.g., email, fax. + The communication medium to be used, e.g., email, fax. @@ -8567,16 +8379,16 @@ P.O. Box number, delivery hints, and similar address information.A code identifying the kind of content contained within the section. This must be consistent with the section title. - - - A nested sub-section within this section. - - The content (narrative and data entries) associated with the section. + + + A nested sub-section within this section. + + @@ -9018,16 +8830,13 @@ P.O. Box number, delivery hints, and similar address information. - + Code that identifies the structural location. - - - - - Detailed anatomical location information. - - + + + + @@ -9589,7 +9398,7 @@ P.O. Box number, delivery hints, and similar address information.An address to which messages and/or replies are to be sent. - + Length if the receiver's reliable messaging cache in minutes (if a receiver) or how long the cache length on the receiver should be (if a sender). @@ -9685,61 +9494,6 @@ P.O. Box number, delivery hints, and similar address information. - - - - - The application produces documents of the specified type. - - - - - The application consumes documents of the specified type. - - - - - - - Whether the application produces or consumes documents - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Operations supported by REST at the system level - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - @@ -9770,28 +9524,58 @@ P.O. Box number, delivery hints, and similar address information. - + - + - The application acts as a client for this resource. + The message represents/requests a change that should not be processed more than once. E.g. Making a booking for an appointment. - + - The application acts as a server for this resource. + The message represents a response to query for current information. Retrospective processing is wrong and/or wasteful. + + + + + The content is not necessarily intended to be current, and it can be reprocessed, though there may be version issues created by processing old notifications. - + - The mode of a RESTful conformance statement + The impact of the content of a message If the element is present, it must have either a @value, an @id, or extensions - + + + + + + + + + The application produces documents of the specified type. + + + + + The application consumes documents of the specified type. + + + + + + + Whether the application produces or consumes documents + If the element is present, it must have either a @value, an @id, or extensions + + + + @@ -9880,33 +9664,58 @@ P.O. Box number, delivery hints, and similar address information. - + - + - The message represents/requests a change that should not be processed more than once. E.g. Making a booking for an appointment. + - + - The message represents a response to query for current information. Retrospective processing is wrong and/or wasteful. + - + - The content is not necessarily intended to be current, and it can be reprocessed, though there may be version issues created by processing old notifications. + - + - The impact of the content of a message + Operations supported by REST at the system level If the element is present, it must have either a @value, an @id, or extensions - + + + + + + + + + The application acts as a client for this resource. + + + + + The application acts as a server for this resource. + + + + + + + The mode of a RESTful conformance statement + If the element is present, it must have either a @value, an @id, or extensions + + + + @@ -10469,12 +10278,12 @@ P.O. Box number, delivery hints, and similar address information.Identifies a sub-style or sub-collective of coverage issues by the underwriter, for example may be used to identify a specific employer group within a class of employers. May be referred to as a Section or Division ID. - + A unique identifier for a dependent under the coverage. - + An optional counter for a particular instance of the identified coverage which increments upon each renewal. @@ -10697,12 +10506,17 @@ P.O. Box number, delivery hints, and similar address information. - Unique instance identifiers assigned to a device by organizations like manufacturers, owners or regulatory agencies. If the identifier identifies the type of device, Device.type should be used. An example is the FDA Mandated Unique Device Identifier (UDI) which identifies an instance of a device uniquely if the serial number is present, . - see http://www.fda.gov/MedicalDevices/DeviceRegulationandGuidance/UniqueDeviceIdentification/default.htm. + Unique instance identifiers assigned to a device by organizations like manufacturers or owners . If the identifier identifies the type of device, Device.type should be used. - Code or identifier to identify a kind of device An example is the FDA Mandated Unique Device Identifier (UDI) which identifies a type of a device when the serial number is absent, otherwise it uniquely identifies the device instance and Device.identifier should be used instead of Device.type. - see http://www.fda.gov/MedicalDevices/DeviceRegulationandGuidance/UniqueDeviceIdentification/default.htm. + Code or identifier to identify a kind of device. + + + + + Status of the Device availability. @@ -10730,6 +10544,11 @@ P.O. Box number, delivery hints, and similar address information.The date and time beyond which this device is no longer valid or should not be used (if applicable). + + + United States Food and Drug Administration mandated Unique Device Identifier (UDI). Use the human readable information (the content that the user sees, which is sometimes different to the exact syntax represented in the barcode) - see http://www.fda.gov/MedicalDevices/DeviceRegulationandGuidance/UniqueDeviceIdentification/default.htm. + + Lot number assigned by the manufacturer. @@ -10764,6 +10583,36 @@ P.O. Box number, delivery hints, and similar address information. + + + + + The Device is available for use. + + + + + The Device is no longer available for use ( e.g lost, expired, damaged). + + + + + The Device was entered in error and voided. + + + + + + + The availability status of the device + If the element is present, it must have either a @value, an @id, or extensions + + + + + + + Describes the characteristics, operational status and capabilities of a medical-related component of a medical device. @@ -11024,6 +10873,41 @@ period. + + + + + TODO. + + + + + TODO. + + + + + TODO. + + + + + TODO. + + + + + + + Describes the type of a metric calibration + If the element is present, it must have either a @value, an @id, or extensions + + + + + + + @@ -11114,38 +10998,33 @@ period. - + - + - TODO. + The DeviceMetric is operating and will generate DeviceObservations. - + - TODO. + The DeviceMetric is not operating. - + - TODO. - - - - - TODO. + The DeviceMetric is operating, but will not generate any DeviceObservations. - + - Describes the type of a metric calibration + Describes the operational status of the DeviceMetric If the element is present, it must have either a @value, an @id, or extensions - + @@ -11184,36 +11063,6 @@ period. - - - - - The DeviceMetric is operating and will generate DeviceObservations. - - - - - The DeviceMetric is not operating. - - - - - The DeviceMetric is operating, but will not generate any DeviceObservations. - - - - - - - Describes the operational status of the DeviceMetric - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - Represents a request for a patient to employ a medical device. The device may be an implantable device, or an external assistive device, such as a walker. @@ -11301,6 +11150,41 @@ period. + + + + + The request has a normal priority. + + + + + The request should be done urgently. + + + + + The request is time-critical. + + + + + The request should be acted on as soon as possible. + + + + + + + Codes representing the priority of the request + If the element is present, it must have either a @value, an @id, or extensions + + + + + + + @@ -11366,41 +11250,6 @@ period. - - - - - The request has a normal priority. - - - - - The request should be done urgently. - - - - - The request is time-critical. - - - - - The request should be acted on as soon as possible. - - - - - - - Codes representing the priority of the request - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - A record of a device being used by a patient where the record is the result of a report from the patient or another clinician. @@ -11962,9 +11811,9 @@ period. Human-readable description of the source document. This is sometimes known as the "title". - + - The list of resources that describe the parts of this document reference. Usually, these would be document references, but direct references to binary attachments and images are also allowed. + The manifest list. @@ -11976,6 +11825,24 @@ period. + + + A manifest that defines a set of documents. + + + + + + + The list of DocumentReference or Media Resources, or Attachment that consist of the parts of this document manifest. Usually, these would be document references, but direct references to Media or Attachments are also allowed. + + + + + + + + A manifest that defines a set of documents. @@ -12027,17 +11894,17 @@ period. - The type code specifies the precise type of document from the user perspective. It is recommended that the value Set be drawn from a coding scheme providing a fine level of granularity such as LOINC. (e.g. Patient Summary, Discharge Summary, Prescription, etc.). + Specifies the particular kind of document. This usually equates to the purpose of making the document. It is recommended that the value Set be drawn from a coding scheme providing a fine level of granularity such as LOINC. (e.g. Patient Summary, Discharge Summary, Prescription, etc.). - The class code specifying the high-level use classification of the document type (e.g., Report, Summary, Images, Treatment Plan, Patient Preferences, Workflow). + A categorization for the type of document. The class is an abstraction from the type specifying the high-level kind of document (e.g., Report, Summary, Images, Treatment Plan, Patient Preferences, Workflow) at a macro level. - An identifier that identifies the the document encoding, structure and template that the document conforms to beyond the base format indicated in the mimeType. + An identifier of the document encoding, structure, and template that the document conforms to beyond the base format indicated in the mimeType. @@ -12369,7 +12236,7 @@ period. The current status is always found in the current version of the resource. This status history permits the encounter resource to contain the status history without the needing to read through the historical versions of the resource, or even have the server store them. - + inpatient | outpatient | ambulatory | emergency +. @@ -12523,9 +12390,9 @@ The indication will typically be a Condition (with other resources referenced in From where patient was admitted (physician referral, transfer). - + - Dietary restrictions for the patient. + Diet preferences reported by the patient. @@ -12770,9 +12637,9 @@ The indication will typically be a Condition (with other resources referenced in Identifier(s) by which this EpisodeOfCare is known. - + - planned | active | onhold | finished | withdrawn | other. + planned | waitlist | active | onhold | finished | cancelled. @@ -12782,12 +12649,12 @@ The indication will typically be a Condition (with other resources referenced in - The type can be very important in processing as this could be used in determining if the episodeofcare is relevant to specific government reporting, or other types of classifications. + The type can be very important in processing as this could be used in determining if the EpisodeOfCare is relevant to specific government reporting, or other types of classifications. - The patient that this episodeofcare applies to. + The patient that this EpisodeOfCare applies to. @@ -12805,9 +12672,9 @@ The indication will typically be a Condition (with other resources referenced in A list of conditions/problems/diagnoses that this episode of care is intended to be providing care for. - + - A Referral Request that this EpisodeOfCare manages activities within. + Referral Request(s) that are fulfilled by this EpisodeOfCare, incoming referrals. @@ -12833,12 +12700,12 @@ The indication will typically be a Condition (with other resources referenced in - planned | active | onhold | finished | withdrawn | other. + planned | waitlist | active | onhold | finished | cancelled. - The period during this episodeofcare that the specific status applied. + The period during this EpisodeOfCare that the specific status applied. @@ -12854,7 +12721,7 @@ The indication will typically be a Condition (with other resources referenced in - The practitioner within the team. + The practitioner (or Organization) within the team. @@ -12878,6 +12745,11 @@ The indication will typically be a Condition (with other resources referenced in This episode of care is planned to start at the date specified in the period.start. During this status an organization may perform assessments to determine if they are eligible to receive services, or be organizing to make resources available to provide care services. + + + This episode has been placed on a waitlist, pending the episode being made active (or cancelled). + + This episode of care is current. @@ -12885,22 +12757,17 @@ The indication will typically be a Condition (with other resources referenced in - This episode of care is on hold, the organization has limitted responsibility for the patient (such as while on respite). + This episode of care is on hold, the organization has limited responsibility for the patient (such as while on respite). - This episode of care is finished at the organization is not expecting to be providing care to the patient. + This episode of care is finished at the organization is not expecting to be providing care to the patient. Can also be known as "closed", "completed" or other similar terms. - + - The episode of care was withdrawn from service, often selected during the planned stage as the patient may have gone elsewhere, or the circumstances have changed and the organization is unable to provide the care. - - - - - The status is outside one of these values, an extension should be used to define what the status reason is. + The episode of care was cancelled, or withdrawn from service, often selected during the planned stage as the patient may have gone elsewhere, or the circumstances have changed and the organization is unable to provide the care. It indicates that services terminated outside the planned/expected workflow. @@ -12983,14 +12850,14 @@ The indication will typically be a Condition (with other resources referenced in - + - Significant health events and conditions for people related to the subject relevant in the context of care for the subject. + Significant health events and conditions for a person related to the patient relevant in the context of care for the patient. - + - Significant health events and conditions for people related to the subject relevant in the context of care for the subject. + Significant health events and conditions for a person related to the patient relevant in the context of care for the patient. If the element is present, it must have either a @value, an @id, or extensions @@ -12998,7 +12865,7 @@ The indication will typically be a Condition (with other resources referenced in - This records identifiers associated with this family history record that are defined by business processes and/ or used to refer to it when a direct URL reference to the resource itself is not appropriate (e.g. in CDA documents, or in written / printed documentation). + This records identifiers associated with this family member history record that are defined by business processes and/ or used to refer to it when a direct URL reference to the resource itself is not appropriate (e.g. in CDA documents, or in written / printed documentation). @@ -13008,30 +12875,9 @@ The indication will typically be a Condition (with other resources referenced in - The date (and possibly time) when the family history was taken. + The date (and possibly time) when the family member history was taken. - - - Conveys information about family history not specific to individual relations. - - - - - The related person. Each FamilyHistory resource contains the entire family history for a single person. - - - - - - - - - Significant health events and conditions for people related to the subject relevant in the context of care for the subject. - - - - This will either be a name or a description. E.g. "Aunt Susan", "my cousin with the red hair". @@ -13042,6 +12888,11 @@ The indication will typically be a Condition (with other resources referenced in The type of relationship this person has to the patient (father, mother, brother etc.). + + + Administrative Gender - the gender that the relative is considered to have for administration and record keeping purposes. + + The actual or approximate date of birth of the relative. @@ -13052,7 +12903,7 @@ The indication will typically be a Condition (with other resources referenced in - The actual or approximate age of the relative at the time the family history is recorded. + The actual or approximate age of the relative at the time the family member history is recorded. @@ -13060,7 +12911,7 @@ The indication will typically be a Condition (with other resources referenced in - If this resource is indicating that the related person is deceased, then an indicator of whether the person is deceased (yes) or not (no) or the age or age range or description of age at death - can be indicated here. If the reason for death is known, then it can be indicated in the outcome code of the condition - in this case the deceased property should still be set. + The actual or approximate age of the relative at the time the family member history is recorded. @@ -13073,7 +12924,7 @@ The indication will typically be a Condition (with other resources referenced in This property allows a non condition-specific note to the made about the related person. Ideally, the note would be in the condition property, but this is not always possible. - + The significant Conditions (or condition) that the family member had. This is a repeating section to allow a system to represent more than one condition per resource, though there is nothing stopping multiple resources - one per condition. @@ -13082,9 +12933,9 @@ The indication will typically be a Condition (with other resources referenced in - + - Significant health events and conditions for people related to the subject relevant in the context of care for the subject. + Significant health events and conditions for a person related to the patient relevant in the context of care for the patient. @@ -13116,6 +12967,88 @@ The indication will typically be a Condition (with other resources referenced in + + + Prospective warnings of potential issues when providing care to the patient. + + + + + Prospective warnings of potential issues when providing care to the patient. + If the element is present, it must have either a @value, an @id, or extensions + + + + + + + Identifier assigned to the flag for external use (outside the FHIR environment). + + + + + Allows an flag to be divided into different categories like clinical, administrative etc. + + + + + Supports basic workflow. + + + + + The period of time from the activation of the flag to inactivation of the flag. If the flag is active, the end of the period should be unspecified. + + + + + The patient record this flag is associated with. + + + + + The person or device that created the flag. + + + + + The coded value or textual component of the flag to display to the user. + + + + + + + + + + + A current flag that should be displayed to a user. A system may use the category to determine which roles should view the flag. + + + + + The flag does not need to be displayed any more. + + + + + The flag was added in error, and should no longer be displayed. + + + + + + + Indicates whether this flag is active and needs to be displayed to a user, or whether it is no longer needed or entered in error + If the element is present, it must have either a @value, an @id, or extensions + + + + + + + Describes the intended objective(s) of patient care, for example, weight loss, restoring an activity of daily living, etc. @@ -13139,30 +13072,73 @@ The indication will typically be a Condition (with other resources referenced in Identifies the patient/subject whose intended care is described by the plan. + + + Indicates when the goal is intended to be reached. + + Human-readable description of a specific desired objective of care. - + Indicates whether the goal has been reached and is still considered relevant. + + + Identifies when the current status. I.e. When initially created, when achieved, when cancelled, etc. + + + + + Indicates whose goal this is - patient goal, practitioner goal, etc. + + + + + Identifies the level of importance associated with reaching/sustaining the goal. + + + + + The identified conditions and other health record elements that are intended to be addressed by the goal. + + Any comments related to the goal. - + - The identified conditions that this goal relates to - the condition that caused it to be created, or that it is intended to address. + Identifies the change (or lack of change) at the point where the goal was deepmed to be cancelled or achieved. + + + Describes the intended objective(s) of patient care, for example, weight loss, restoring an activity of daily living, etc. + + + + + + + Details of what's changed (or not changed). + + + + + + + + @@ -13256,7 +13232,7 @@ The indication will typically be a Condition (with other resources referenced in A label assigned to the group for human identification and communication. - + A count of the number of resource instances that are part of the group. @@ -13365,7 +13341,12 @@ The indication will typically be a Condition (with other resources referenced in - External Ids for this item. + External Identifiers for this item. + + + + + The organization that provides this Healthcare Service. @@ -13390,7 +13371,7 @@ The indication will typically be a Condition (with other resources referenced in - Additional description of the or any specific issues not covered by the other attributes, which can be displayed as further detail under the serviceName. + Any additional description of the service and/or any specific issues not covered by the other attributes, which can be displayed as further detail under the serviceName. @@ -13398,9 +13379,24 @@ The indication will typically be a Condition (with other resources referenced in Extra details about the service that can't be placed in the other fields. - + - The free provision code provides a link to the Free Provision reference entity to enable the selection of one free provision type. + If there is a photo/symbol associated with this HealthcareService, it may be included here to facilitate quick identification of the service in a list. + + + + + List of contacts related to this specific healthcare service. If this is empty, then refer to the location's contacts. + + + + + The location(s) that this service is available to (not where the service is provided). + + + + + The code(s) that detail the conditions under which the healthcare service is available/offered. @@ -13413,46 +13409,11 @@ The indication will typically be a Condition (with other resources referenced in The description of service eligibility should, in general, not exceed one or two paragraphs. It should be sufficient for a prospective consumer to determine if they are likely to be eligible or not. Where eligibility requirements and conditions are complex, it may simply be noted that an eligibility assessment is required. Where eligibility is determined by an outside source, such as an Act of Parliament, this should be noted, preferably with a reference to a commonly available copy of the source document such as a web page. - - - Indicates whether or not a prospective consumer will require an appointment for a particular service at a Site to be provided by the Organization. Indicates if an appointment is required for access to this service. If this flag is 'NotDefined', then this flag is overridden by the Site's availability flag. (ConditionalIndicator Enum). - - - - - If there is an image associated with this Service Site, its URI can be included here. - - - - - A Collection of times that the Service Site is available. - - - - - Not avail times - need better description. - - - - - A description of Site availability exceptions, e.g., public holiday availability. Succinctly describing all possible exceptions to normal Site availability as details in the Available Times and Not Available Times. - - - - - The public part of the 'keys' allocated to an Organization by an accredited body to support secure exchange of data over the internet. To be provided by the Organization, where available. - - Program Names that can be used to categorize the service. - - - List of contacts related to this specific healthcare service. If this is empty, then refer to the location's contacts. - - Collection of Characteristics (attributes). @@ -13460,32 +13421,32 @@ The indication will typically be a Condition (with other resources referenced in - Ways that the service accepts referrals. + Ways that the service accepts referrals, if this is not provided then it is implied that no referral is required. - + - The setting where this service can be provided, such is in home, or at location in organisation. + The public part of the 'keys' allocated to an Organization by an accredited body to support secure exchange of data over the internet. To be provided by the Organization, where available. - + - Collection of Target Groups for the Service Site (The target audience that this service is for). + Indicates whether or not a prospective consumer will require an appointment for a particular service at a Site to be provided by the Organization. Indicates if an appointment is required for access to this service. - + - Need better description. + A Collection of times that the Service Site is available. - + - Need better description. + The HealthcareService is not available during this period of time due to the provided reason. - + - List of the specific. + A description of Site availability exceptions, e.g., public holiday availability. Succinctly describing all possible exceptions to normal Site availability as details in the Available Times and Not Available Times. @@ -13520,7 +13481,7 @@ The indication will typically be a Condition (with other resources referenced in - + Indicates which Days of the week are available between the Start and End Times. @@ -13530,21 +13491,21 @@ The indication will typically be a Condition (with other resources referenced in Is this always available? (hence times are irrelevant) e.g. 24 hour service. - + - The opening time of day (the date is not included). Note: If the AllDay flag is set, then this time is ignored. + The opening time of day. Note: If the AllDay flag is set, then this time is ignored. - + - The closing time of day (the date is not included). Note: If the AllDay flag is set, then this time is ignored. + The closing time of day. Note: If the AllDay flag is set, then this time is ignored. - + The details of a Healthcare Service available at a location. @@ -13556,20 +13517,65 @@ The indication will typically be a Condition (with other resources referenced in The reason that can be presented to the user as to why this time is not available. - + Service is not available (seasonally or for a public holiday) from this date. - - - Service is not available (seasonally or for a public holiday) until this date. - - + + + + + Monday. + + + + + Tuesday. + + + + + Wednesday. + + + + + Thursday. + + + + + Friday. + + + + + Saturday. + + + + + Sunday. + + + + + + + The days of the week + If the element is present, it must have either a @value, an @id, or extensions + + + + + + + A set of DICOM SOP Instances of a patient, selected for some application purpose, e.g., quality assurance, teaching, conference, consulting, etc. Objects selected can be from different studies, but must be of the same patient. @@ -13712,7 +13718,7 @@ The indication will typically be a Condition (with other resources referenced in - + The frame numbers in the frame set. @@ -13789,12 +13795,12 @@ The indication will typically be a Condition (with other resources referenced in WADO-RS resource where Study is available. - + Number of Series in Study. - + Number of SOP Instances in Study. @@ -13835,7 +13841,7 @@ The indication will typically be a Condition (with other resources referenced in - + The Numeric identifier of this series in the study. @@ -13855,7 +13861,7 @@ The indication will typically be a Condition (with other resources referenced in A description of the series. - + Number of SOP Instances in Series. @@ -13901,7 +13907,7 @@ The indication will typically be a Condition (with other resources referenced in - + The number of this image in the series. @@ -14611,7 +14617,7 @@ The indication will typically be a Condition (with other resources referenced in - + Nominal position in a series. @@ -14631,7 +14637,7 @@ The indication will typically be a Condition (with other resources referenced in One possible path to achieve presumed immunity against a disease - within the context of an authority. - + The recommended number of doses to achieve immunity. @@ -14704,7 +14710,7 @@ The indication will typically be a Condition (with other resources referenced in Vaccine that pertains to the recommendation. - + This indicates the next recommended dose number (e.g. dose 2 is the next recommended dose). @@ -14808,6 +14814,11 @@ The indication will typically be a Condition (with other resources referenced in Identifier for the List assigned for business purposes outside the context of FHIR. + + + A label for the list assigned by the author. + + This code defines the purpose of the list - why it was created. @@ -14823,6 +14834,11 @@ The indication will typically be a Condition (with other resources referenced in The entity responsible for deciding what the contents of the list were. + + + Indicates the current state of this list. + + The date that the list was prepared. @@ -14838,6 +14854,11 @@ The indication will typically be a Condition (with other resources referenced in How this list was prepared - whether it is a working list that is suitable for being maintained on an ongoing basis, or if it represents a snapshot of a list of items from another source, or whether it is a prepared list where items may be marked as added, modified or deleted. + + + Comments that apply to the overall list. + + Entries in this list. @@ -14883,6 +14904,36 @@ The indication will typically be a Condition (with other resources referenced in + + + + + The list is considered to be an active part of the patient's record. + + + + + The list is "old" and should no longer be considered accurate or relevant. + + + + + The list was never accurate. It is retained for medico-legal purposes only. + + + + + + + The current state of the list + If the element is present, it must have either a @value, an @id, or extensions + + + + + + + @@ -14941,6 +14992,11 @@ The indication will typically be a Condition (with other resources referenced in Description of the Location, which helps in finding or referencing the place. + + + Indicates whether a resource instance represents a specific location or a class of locations. + + Indicates the type of function performed at the location. @@ -14971,19 +15027,14 @@ The indication will typically be a Condition (with other resources referenced in The organization that is responsible for the provisioning and upkeep of the location. - - - active | suspended | inactive. - - Another Location which this Location is physically part of. - + - Indicates whether a resource instance represents a specific location or a class of locations. + active | suspended | inactive. @@ -15016,6 +15067,31 @@ The indication will typically be a Condition (with other resources referenced in + + + + + The Location resource represents a specific instance of a Location (e.g. Operating Theatre 1A). + + + + + The Location represents a class of Locations (e.g. Any Operating Theatre). Although this class of locations could be constrained within a specific boundary (such as organization, or parent location, address etc). + + + + + + + Indicates whether a resource instance represents a specific location or a class of locations + If the element is present, it must have either a @value, an @id, or extensions + + + + + + + @@ -15046,31 +15122,6 @@ The indication will typically be a Condition (with other resources referenced in - - - - - The Location resource represents a specific instance of a Location. - - - - - The Location represents a class of Locations. - - - - - - - Indicates whether a resource instance represents a specific location or a class of locations - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - A photo, video, or audio recording acquired or used in healthcare. The actual content may be inline or provided by direct reference. @@ -15119,22 +15170,22 @@ The indication will typically be a Condition (with other resources referenced in The name of the device / manufacturer of the device that was used to make the recording. - + Height of the image in pixels(photo/video). - + Width of the image in pixels (photo/video). - + The number of frames in a photo. This is used with a multi-page fax, or an imaging acquisition context that takes multiple slices in a single image, or an animated gif. If there is more than one frame, this SHALL have a value in order to alert interface software that a multi-frame capable rendering widget is required. - + The duration of the recording in seconds - for audio and video. @@ -15925,7 +15976,7 @@ The indication will typically be a Condition (with other resources referenced in Design Comments: This indicates the validity period of a prescription (stale dating the Prescription) It reflects the prescriber perspective for the validity of the prescription. Dispenses must not be made against the prescription outside of this period. The lower-bound of the Dispensing Window signifies the earliest date that the prescription can be filled for the first time. If an upper-bound is not specified then the Prescription is open-ended or will default to a stale-date based on regulations. Rationale: Indicates when the Prescription becomes valid, and when it ceases to be a dispensable Prescription. - + An integer indicating the number of repeats of the Dispense. UsageNotes: For example, the number of times the prescribed quantity is to be supplied including the initial standard fill. @@ -16513,36 +16564,6 @@ The indication will typically be a Condition (with other resources referenced in - - - - - The namingsystem is used to define concepts and symbols to represent those concepts. E.g. UCUM, LOINC, NDC code, local lab codes, etc. - - - - - The namingsystem is used to manage identifiers (e.g. license numbers, order numbers, etc.). - - - - - The namingsystem is used as the root for other identifiers and namingsystems. - - - - - - - Identifies the purpose of the namingsystem - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - @@ -16578,6 +16599,36 @@ The indication will typically be a Condition (with other resources referenced in + + + + + The namingsystem is used to define concepts and symbols to represent those concepts. E.g. UCUM, LOINC, NDC code, local lab codes, etc. + + + + + The namingsystem is used to manage identifiers (e.g. license numbers, order numbers, etc.). + + + + + The namingsystem is used as the root for other identifiers and namingsystems. + + + + + + + Identifies the purpose of the namingsystem + If the element is present, it must have either a @value, an @id, or extensions + + + + + + + A request to supply a diet, formula feeding (enteral) or oral nutritional supplement to a patient/resident. @@ -17134,56 +17185,6 @@ other observer (for example a relative or EMT), or any observation made about th - - - - - The existence of the observation is registered, but there is no result yet available. - - - - - This is an initial or interim observation: data may be incomplete or unverified. - - - - - The observation is complete and verified by an authorized person. - - - - - The observation has been modified subsequent to being Final, and is complete and verified by an authorized person. - - - - - The observation is unavailable because the measurement was not started or not completed (also sometimes called "aborted"). - - - - - The observation has been withdrawn following previous Final release. - - - - - The observation status is unknown. Note that "unknown" is a value of last resort and every attempt should be made to provide a meaningful value other than "unknown". - - - - - - - Codes providing the status of an observation - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - @@ -17234,6 +17235,56 @@ other observer (for example a relative or EMT), or any observation made about th + + + + + The existence of the observation is registered, but there is no result yet available. + + + + + This is an initial or interim observation: data may be incomplete or unverified. + + + + + The observation is complete and verified by an authorized person. + + + + + The observation has been modified subsequent to being Final, and is complete and verified by an authorized person. + + + + + The observation is unavailable because the measurement was not started or not completed (also sometimes called "aborted"). + + + + + The observation has been withdrawn following previous Final release. + + + + + The observation status is unknown. Note that "unknown" is a value of last resort and every attempt should be made to provide a meaningful value other than "unknown". + + + + + + + Codes providing the status of an observation + If the element is present, it must have either a @value, an @id, or extensions + + + + + + + A formal computable definition of an operation (on the RESTful interface) or a named query (using the search interaction). @@ -17302,6 +17353,11 @@ other observer (for example a relative or EMT), or any observation made about th Whether this is operation or named query. + + + Operations that are idempotent (see [HTTP specification definition of idempotent](http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html)) may be invoked by performing an HTTP GET operation instead of a POST. + + The name used to invoke the operation. @@ -17425,7 +17481,7 @@ other observer (for example a relative or EMT), or any observation made about th The name of used to identify the parameter. - + The minimum number of times this parameter SHALL appear in the request or response. @@ -17844,11 +17900,6 @@ other observer (for example a relative or EMT), or any observation made about th Contact for the organization for a certain purpose. - - - Location(s) the organization uses to provide services. - - Whether the organization's record is still in active use. @@ -17889,48 +17940,6 @@ other observer (for example a relative or EMT), or any observation made about th - - - Other is a conformant for handling resource concepts not yet defined for FHIR or outside HL7's scope of interest. - - - - - Other is a conformant for handling resource concepts not yet defined for FHIR or outside HL7's scope of interest. - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - Identifier assigned to the resource for business purposes, outside the context of FHIR. - - - - - Identifies the 'type' of resource - equivalent to the resource name for other resources. - - - - - Identifies the patient, practitioner, device or any other resource that is the "focus" of this resoruce. - - - - - Indicates who was responsible for creating the resource instance. - - - - - Identifies when the resource was first created. - - - - - - Demographics and other administrative information about an individual or animal receiving care or other health-related services. @@ -18707,7 +18716,7 @@ other observer (for example a relative or EMT), or any observation made about th The specific procedure that is performed. Use text if the exact nature of the procedure can't be coded. - + Detailed and structured anatomical location information. Multiple locations are allowed - e.g. multiple punch biopsies of a lesion. @@ -18774,6 +18783,29 @@ other observer (for example a relative or EMT), or any observation made about th A device change during the procedure. + + + Identifies medications, devices and other substance used as part of the procedure. + + + + + + + + + An action that is performed on a patient. This can be a physical 'thing' like an operation, or less invasive like counseling or hypnotherapy. + + + + + + + Detailed and structured anatomical location information. Multiple locations are allowed - e.g. multiple punch biopsies of a lesion. + + + + @@ -18841,31 +18873,6 @@ other observer (for example a relative or EMT), or any observation made about th - - - - - This procedure had to be performed because of the related one. - - - - - This procedure caused the related one to be performed. - - - - - - - The nature of the relationship with this procedure - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - @@ -18901,6 +18908,31 @@ other observer (for example a relative or EMT), or any observation made about th + + + + + This procedure had to be performed because of the related one. + + + + + This procedure caused the related one to be performed. + + + + + + + The nature of the relationship with this procedure + If the element is present, it must have either a @value, an @id, or extensions + + + + + + + A request for a procedure to be performed. May be a proposal or an order. @@ -18929,13 +18961,11 @@ other observer (for example a relative or EMT), or any observation made about th The specific procedure that is ordered. Use text if the exact nature of the procedure can't be coded. - + - Indicates the site on the subject's body where the procedure should be performed ( i.e. the target site). - - - - + Indicates the sites on the subject's body where the procedure should be performed ( i.e. the target sites). + + The reason why the procedure is proposed or ordered. This procedure request may be motivated by a Condition for instance. @@ -18995,38 +19025,21 @@ other observer (for example a relative or EMT), or any observation made about th - - - - - The request has a normal priority. - - - - - The request should be done urgently. - - - - - The request is time-critical. - - - - - The request should be acted on as soon as possible. - - - - - + - The priority of the request - If the element is present, it must have either a @value, an @id, or extensions + A request for a procedure to be performed. May be a proposal or an order. - - + + + + + Indicates the site on the subject's body where the procedure should be performed ( i.e. the target sites). + + + + + @@ -19095,6 +19108,41 @@ other observer (for example a relative or EMT), or any observation made about th + + + + + The request has a normal priority. + + + + + The request should be done urgently. + + + + + The request is time-critical. + + + + + The request should be acted on as soon as possible. + + + + + + + The priority of the request + If the element is present, it must have either a @value, an @id, or extensions + + + + + + + This resource provides the target, request and response, and action details for an action to be performed by the target on or about existing resources. @@ -20048,7 +20096,7 @@ other observer (for example a relative or EMT), or any observation made about th A draft referral that has yet to be send. - + The referral has been transmitted, but not yet acknowledged by the recipient. @@ -20063,6 +20111,11 @@ other observer (for example a relative or EMT), or any observation made about th The referral has been cancelled without being completed. For example it is no longer needed. + + + The recipient has agreed to deliver the care requested by the referral. + + The recipient has declined to accept the referral. @@ -20885,41 +20938,6 @@ other observer (for example a relative or EMT), or any observation made about th - - - - - A data type - either a primitive or complex structure that defines a set of data elements. These can be used throughout Resource and extension definitions. - - - - - A resource defined by the FHIR specification. - - - - - A set of constraints on a resource or data type that describe how it is used for a particular use. - - - - - A definition of an extension that can be used in a FHIR resource (or a set of constraints on an exsting extension). - - - - - - - Defines the type of structure that a definition is describing - If the element is present, it must have either a @value, an @id, or extensions - - - - - - - @@ -20955,6 +20973,41 @@ other observer (for example a relative or EMT), or any observation made about th + + + + + A data type - either a primitive or complex structure that defines a set of data elements. These can be used throughout Resource and extension definitions. + + + + + A resource defined by the FHIR specification. + + + + + A set of constraints on a resource or data type that describe how it is used for a particular use. + + + + + A definition of an extension that can be used in a FHIR resource (or a set of constraints on an exsting extension). + + + + + + + Defines the type of structure that a definition is describing + If the element is present, it must have either a @value, an @id, or extensions + + + + + + + The subscription resource is used to define a push based subscription from a server to another system. Once a subscription is registered with the server, the server checks every resource that is created or updated, and if the resource matches the given criteria, it sends a message on the defined "channel" so that another system is able to take an appropriate action. diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/flag.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/flag.sch new file mode 100644 index 00000000000..c73847b897d --- /dev/null +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/flag.sch @@ -0,0 +1,84 @@ + + + + + + + Global + + global-1: All FHIR elements must have a @value or children + + + + Flag + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources + dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource + + + txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + cod-1: If a valueSet is provided, a system URI Is required + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/goal.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/goal.sch index 9bd2d81c972..2f6ee8d7aa6 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/goal.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/goal.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,6 +47,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end @@ -56,8 +62,26 @@ ref-1: SHALL have a local reference if the resource is provided inline + + ref-1: SHALL have a local reference if the resource is provided inline + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + ref-1: SHALL have a local reference if the resource is provided inline + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + + + ref-1: SHALL have a local reference if the resource is provided inline + diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/group.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/group.sch index 1d57d37ca9b..c3316bc501a 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/group.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/group.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -48,8 +48,14 @@ cod-1: If a valueSet is provided, a system URI Is required - grp-4: Can't have more members associated with the group than the value specified for "quantity" grp-1: Can only have members if group is "actual" + grp-4: Can't have more members associated with the group than the value specified for "quantity" + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/healthcareservice.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/healthcareservice.sch index 01f479fe17e..ad2e21fa765 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/healthcareservice.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/healthcareservice.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,12 +47,21 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end ref-1: SHALL have a local reference if the resource is provided inline + + ref-1: SHALL have a local reference if the resource is provided inline + ref-1: SHALL have a local reference if the resource is provided inline @@ -74,10 +83,22 @@ cod-1: If a valueSet is provided, a system URI Is required - + + att-1: It the Attachment has data, it SHALL have a contentType + + + cpt-2: A system is required if a value is provided. + + + per-1: If present, start SHALL have a lower value than end + + + ref-1: SHALL have a local reference if the resource is provided inline + + ccc-2: Only one coding in a set can be chosen directly by the user - + cod-1: If a valueSet is provided, a system URI Is required @@ -86,24 +107,6 @@ cod-1: If a valueSet is provided, a system URI Is required - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - cpt-2: A system is required if a value is provided. - - - per-1: If present, start SHALL have a lower value than end - ccc-2: Only one coding in a set can be chosen directly by the user @@ -116,35 +119,8 @@ cod-1: If a valueSet is provided, a system URI Is required - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required - - - ccc-2: Only one coding in a set can be chosen directly by the user - - - cod-1: If a valueSet is provided, a system URI Is required + + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/imagingobjectselection.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/imagingobjectselection.sch index 567a8e95ecc..482a3c33303 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/imagingobjectselection.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/imagingobjectselection.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/imagingstudy.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/imagingstudy.sch index e5273a3cb43..02f3337bf25 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/imagingstudy.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/imagingstudy.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -50,12 +50,24 @@ ref-1: SHALL have a local reference if the resource is provided inline + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end ref-1: SHALL have a local reference if the resource is provided inline + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/immunization.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/immunization.sch index 95073e82415..be2a933d141 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/immunization.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/immunization.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,6 +47,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/immunizationrecommendation.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/immunizationrecommendation.sch index 59ce145b403..09a2141414e 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/immunizationrecommendation.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/immunizationrecommendation.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,6 +47,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/list.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/list.sch index 5880492b9fa..852af2f0afe 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/list.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/list.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -51,6 +51,12 @@ lst-2: The deleted flag can only be used if the mode of the list is "changes" lst-1: A list can only have an emptyReason if it is empty + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/location.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/location.sch index 675a7557991..87558cd712b 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/location.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/location.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,6 +47,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/media.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/media.sch index b2982523951..5245207ffce 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/media.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/media.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -50,8 +50,8 @@ mda-1: Height can only be used for a photo or video mda-2: Width can only be used for a photo or video - mda-4: Length can only be used for an audio or a video mda-3: Frames can only be used for a photo + mda-4: Length can only be used for an audio or a video ccc-2: Only one coding in a set can be chosen directly by the user @@ -59,6 +59,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/medication.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/medication.sch index ba62b002b5e..cc0a934cf0e 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/medication.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/medication.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/medicationadministration.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/medicationadministration.sch index 2583cb0bf83..fc956831a1d 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/medicationadministration.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/medicationadministration.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,6 +47,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/medicationdispense.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/medicationdispense.sch index 27a8eaec33a..5f6a6212e51 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/medicationdispense.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/medicationdispense.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -50,6 +50,12 @@ mdd-1: whenHandedOver cannot be before whenPrepared + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end @@ -96,11 +102,11 @@ per-1: If present, start SHALL have a lower value than end - tim-3: Either frequency or when can exist, not both - tim-1: if there's a duration, there needs to be duration units - tim-2: if there's a period, there needs to be duration units tim-6: If there's a periodMax, there must be a period tim-7: If there's a durationMax, there must be a duration + tim-1: if there's a duration, there needs to be duration units + tim-2: if there's a period, there needs to be duration units + tim-3: Either frequency or when can exist, not both per-1: If present, start SHALL have a lower value than end @@ -111,6 +117,12 @@ tim-5: period SHALL be a non-negative value + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + ccc-2: Only one coding in a set can be chosen directly by the user diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/medicationprescription.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/medicationprescription.sch index 84fe5f3ecea..e5854f57b82 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/medicationprescription.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/medicationprescription.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,6 +47,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end @@ -84,11 +90,11 @@ per-1: If present, start SHALL have a lower value than end - tim-3: Either frequency or when can exist, not both - tim-1: if there's a duration, there needs to be duration units - tim-2: if there's a period, there needs to be duration units tim-6: If there's a periodMax, there must be a period tim-7: If there's a durationMax, there must be a duration + tim-1: if there's a duration, there needs to be duration units + tim-2: if there's a period, there needs to be duration units + tim-3: Either frequency or when can exist, not both per-1: If present, start SHALL have a lower value than end @@ -99,6 +105,12 @@ tim-5: period SHALL be a non-negative value + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + ccc-2: Only one coding in a set can be chosen directly by the user diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/medicationstatement.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/medicationstatement.sch index 9bd18568670..72d708fee15 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/medicationstatement.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/medicationstatement.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,6 +47,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end @@ -90,11 +96,11 @@ ref-1: SHALL have a local reference if the resource is provided inline - tim-3: Either frequency or when can exist, not both - tim-1: if there's a duration, there needs to be duration units - tim-2: if there's a period, there needs to be duration units tim-6: If there's a periodMax, there must be a period tim-7: If there's a durationMax, there must be a duration + tim-1: if there's a duration, there needs to be duration units + tim-2: if there's a period, there needs to be duration units + tim-3: Either frequency or when can exist, not both per-1: If present, start SHALL have a lower value than end @@ -105,6 +111,12 @@ tim-5: period SHALL be a non-negative value + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + ccc-2: Only one coding in a set can be chosen directly by the user diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/messageheader.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/messageheader.sch index 24f24c9d09c..29b80d7539d 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/messageheader.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/messageheader.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/namingsystem.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/namingsystem.sch index 19eafd0aa1d..e0e859c9ff5 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/namingsystem.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/namingsystem.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -48,9 +48,9 @@ cod-1: If a valueSet is provided, a system URI Is required - nsd-2: Can't have more than one preferred identifier for a type - nsd-3: Can only have replacedBy if namingsystem is retired nsd-1: Root systems cannot have uuid or sid identifiers + nsd-3: Can only have replacedBy if namingsystem is retired + nsd-2: Can't have more than one preferred identifier for a type ccc-2: Only one coding in a set can be chosen directly by the user diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/nutritionorder.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/nutritionorder.sch index 716b6b35c1f..007da746913 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/nutritionorder.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/nutritionorder.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -56,6 +56,12 @@ ref-1: SHALL have a local reference if the resource is provided inline + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end @@ -87,11 +93,11 @@ cod-1: If a valueSet is provided, a system URI Is required - tim-3: Either frequency or when can exist, not both - tim-1: if there's a duration, there needs to be duration units - tim-2: if there's a period, there needs to be duration units tim-6: If there's a periodMax, there must be a period tim-7: If there's a durationMax, there must be a duration + tim-1: if there's a duration, there needs to be duration units + tim-2: if there's a period, there needs to be duration units + tim-3: Either frequency or when can exist, not both per-1: If present, start SHALL have a lower value than end @@ -102,6 +108,12 @@ tim-5: period SHALL be a non-negative value + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + ccc-2: Only one coding in a set can be chosen directly by the user @@ -136,11 +148,11 @@ cod-1: If a valueSet is provided, a system URI Is required - tim-3: Either frequency or when can exist, not both - tim-1: if there's a duration, there needs to be duration units - tim-2: if there's a period, there needs to be duration units tim-6: If there's a periodMax, there must be a period tim-7: If there's a durationMax, there must be a duration + tim-1: if there's a duration, there needs to be duration units + tim-2: if there's a period, there needs to be duration units + tim-3: Either frequency or when can exist, not both per-1: If present, start SHALL have a lower value than end @@ -151,6 +163,12 @@ tim-5: period SHALL be a non-negative value + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + qty-3: If a code for the units is present, the system SHALL also be present @@ -161,11 +179,11 @@ cod-1: If a valueSet is provided, a system URI Is required - tim-3: Either frequency or when can exist, not both - tim-1: if there's a duration, there needs to be duration units - tim-2: if there's a period, there needs to be duration units tim-6: If there's a periodMax, there must be a period tim-7: If there's a durationMax, there must be a duration + tim-1: if there's a duration, there needs to be duration units + tim-2: if there's a period, there needs to be duration units + tim-3: Either frequency or when can exist, not both per-1: If present, start SHALL have a lower value than end @@ -176,6 +194,12 @@ tim-5: period SHALL be a non-negative value + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + ccc-2: Only one coding in a set can be chosen directly by the user diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/observation.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/observation.sch index 5c910e269c9..b8a4b5cd187 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/observation.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/observation.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -123,6 +123,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/operationdefinition.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/operationdefinition.sch index 9258737c458..f1243ad86ac 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/operationdefinition.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/operationdefinition.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/operationoutcome.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/operationoutcome.sch index de2808b6475..02169b1eab1 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/operationoutcome.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/operationoutcome.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/order.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/order.sch index f578cd70f61..d340675422d 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/order.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/order.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,6 +47,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end @@ -84,11 +90,11 @@ cod-1: If a valueSet is provided, a system URI Is required - tim-3: Either frequency or when can exist, not both - tim-1: if there's a duration, there needs to be duration units - tim-2: if there's a period, there needs to be duration units tim-6: If there's a periodMax, there must be a period tim-7: If there's a durationMax, there must be a duration + tim-1: if there's a duration, there needs to be duration units + tim-2: if there's a period, there needs to be duration units + tim-3: Either frequency or when can exist, not both per-1: If present, start SHALL have a lower value than end @@ -99,6 +105,12 @@ tim-5: period SHALL be a non-negative value + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + ref-1: SHALL have a local reference if the resource is provided inline diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/orderresponse.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/orderresponse.sch index bd937a5dd0f..23dd5524b35 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/orderresponse.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/orderresponse.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,6 +47,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/organization.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/organization.sch index e87bd824c6b..ebc0f9a1e70 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/organization.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/organization.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -50,6 +50,12 @@ org-1: The organization SHALL at least have a name or an id, and possibly more than one + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end @@ -98,8 +104,5 @@ per-1: If present, start SHALL have a lower value than end - - ref-1: SHALL have a local reference if the resource is provided inline - diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/patient.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/patient.sch index 9e0ea0a9659..3f8d8f3baaa 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/patient.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/patient.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,6 +47,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/paymentnotice.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/paymentnotice.sch index 032d4d238ac..6ddf669c263 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/paymentnotice.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/paymentnotice.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,6 +47,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/paymentreconciliation.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/paymentreconciliation.sch index 71bd17cf7d8..c3dd8ec881a 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/paymentreconciliation.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/paymentreconciliation.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,6 +47,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/person.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/person.sch index 345d2578f7c..4f5c1954d43 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/person.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/person.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,6 +47,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/practitioner.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/practitioner.sch index 95cc90d69be..3090b3e3eeb 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/practitioner.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/practitioner.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,6 +47,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end @@ -92,6 +98,12 @@ ref-1: SHALL have a local reference if the resource is provided inline + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/procedure.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/procedure.sch index c9bb8d97c1b..073931dcdea 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/procedure.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/procedure.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,6 +47,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end @@ -68,12 +74,15 @@ cod-1: If a valueSet is provided, a system URI Is required - + ccc-2: Only one coding in a set can be chosen directly by the user - + cod-1: If a valueSet is provided, a system URI Is required + + ref-1: SHALL have a local reference if the resource is provided inline + ccc-2: Only one coding in a set can be chosen directly by the user @@ -131,5 +140,8 @@ ref-1: SHALL have a local reference if the resource is provided inline + + ref-1: SHALL have a local reference if the resource is provided inline + diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/procedurerequest.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/procedurerequest.sch index d6b55987fbe..9be1b90c40f 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/procedurerequest.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/procedurerequest.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,6 +47,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end @@ -62,13 +68,13 @@ cod-1: If a valueSet is provided, a system URI Is required - + ccc-2: Only one coding in a set can be chosen directly by the user - + cod-1: If a valueSet is provided, a system URI Is required - + ref-1: SHALL have a local reference if the resource is provided inline @@ -81,11 +87,11 @@ per-1: If present, start SHALL have a lower value than end - tim-3: Either frequency or when can exist, not both - tim-1: if there's a duration, there needs to be duration units - tim-2: if there's a period, there needs to be duration units tim-6: If there's a periodMax, there must be a period tim-7: If there's a durationMax, there must be a duration + tim-1: if there's a duration, there needs to be duration units + tim-2: if there's a period, there needs to be duration units + tim-3: Either frequency or when can exist, not both per-1: If present, start SHALL have a lower value than end @@ -96,6 +102,12 @@ tim-5: period SHALL be a non-negative value + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + ref-1: SHALL have a local reference if the resource is provided inline diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/processrequest.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/processrequest.sch index d70826db4cc..2df78de2857 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/processrequest.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/processrequest.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,6 +47,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/processresponse.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/processresponse.sch index f7237cbc993..36d5d023123 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/processresponse.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/processresponse.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,6 +47,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/provenance.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/provenance.sch index da044e1440d..3688f501139 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/provenance.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/provenance.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/questionnaire.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/questionnaire.sch index 0d6f94aa7d3..db8c6b14f7f 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/questionnaire.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/questionnaire.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -50,6 +50,12 @@ que-2: The link ids for groups and questions must be unique within the questionnaire + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/questionnaireanswers.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/questionnaireanswers.sch index 4eb1b81472c..c1962bb2fee 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/questionnaireanswers.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/questionnaireanswers.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,6 +47,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/referralrequest.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/referralrequest.sch index 57a8e031037..913a6227ac7 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/referralrequest.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/referralrequest.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,6 +47,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/relatedperson.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/relatedperson.sch index 7c782d331f0..2b52664d53f 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/relatedperson.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/relatedperson.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,6 +47,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/riskassessment.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/riskassessment.sch index 940b7565f02..811e32073cb 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/riskassessment.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/riskassessment.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -56,6 +56,12 @@ ref-1: SHALL have a local reference if the resource is provided inline + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/schedule.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/schedule.sch index 5cd44214d1a..fe52dad773b 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/schedule.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/schedule.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,6 +47,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/searchparameter.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/searchparameter.sch index 44d3f2aa994..64f67470d84 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/searchparameter.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/searchparameter.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/slot.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/slot.sch index a38b46c8091..232a425d34d 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/slot.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/slot.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,6 +47,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/specimen.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/specimen.sch index 849a9dc3650..cfcf18aab31 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/specimen.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/specimen.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,6 +47,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end @@ -65,6 +71,12 @@ ref-1: SHALL have a local reference if the resource is provided inline + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end @@ -104,6 +116,12 @@ ref-1: SHALL have a local reference if the resource is provided inline + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/structuredefinition.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/structuredefinition.sch index abb6995f1f9..1bbd6cfa64a 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/structuredefinition.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/structuredefinition.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -48,11 +48,17 @@ cod-1: If a valueSet is provided, a system URI Is required - sdf-5: If the type is 'extension' then the structure must have context information - sdf-4: A structure must have a base unless it’s type is 'abstract' + sdf-8: In any snapshot or differential, all the elements except the first have to have a path that starts with the path of the first + "." sdf-7: If the type is Resource or Type, the url has to start with "http://hl7.org/fhir/StructureDefinition/" and the tail must match the name sdf-6: A structure must have either a differential, or a snapshot (or both) - sdf-8: In any snapshot or differential, all the elements except the first have to have a path that starts with the path of the first + "." + sdf-5: If the type is 'extension' then the structure must have context information + sdf-4: A structure must have a base unless it’s type is 'abstract' + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required per-1: If present, start SHALL have a lower value than end @@ -79,20 +85,20 @@ sdf-2: Must have at a name or a uri (or both) - sdf-1: Element paths must be unique - or not (LM) sdf-3: If a structure is a snapshot, then each element definition must have a formal definition, and cardinalities + sdf-1: Element paths must be unique - or not (LM) - eld-13: Types must be unique by the combination of code and profile - eld-14: Constraints must be unique by key - eld-11: Binding can only be present for coded elements, string, and uri - eld-8: Pattern and value are mutually exclusive - eld-15: Constraint names must be unique. - eld-16: default value and meaningWhenMissing are mutually exclusive eld-2: Min <= Max + eld-5: Either a namereference or a fixed value (but not both) is permitted eld-7: Pattern may only be specified if there is one type eld-6: Fixed value may only be specified if there is one type - eld-5: Either a namereference or a fixed value (but not both) is permitted + eld-11: Binding can only be present for coded elements, string, and uri + eld-8: Pattern and value are mutually exclusive + eld-14: Constraints must be unique by key + eld-13: Types must be unique by the combination of code and profile + eld-16: default value and meaningWhenMissing are mutually exclusive + eld-15: Constraint names must be unique. cod-1: If a valueSet is provided, a system URI Is required @@ -107,8 +113,8 @@ eld-4: Aggregation may only be specified if one of the allowed types for the element is a resource - eld-9: Example value sets are always extensible eld-10: provide either a reference or a description (or both) + eld-9: Example value sets are always extensible eld-12: uri SHALL start with http:// or https:// @@ -117,16 +123,16 @@ ref-1: SHALL have a local reference if the resource is provided inline - eld-13: Types must be unique by the combination of code and profile - eld-14: Constraints must be unique by key - eld-11: Binding can only be present for coded elements, string, and uri - eld-8: Pattern and value are mutually exclusive - eld-15: Constraint names must be unique. - eld-16: default value and meaningWhenMissing are mutually exclusive eld-2: Min <= Max + eld-5: Either a namereference or a fixed value (but not both) is permitted eld-7: Pattern may only be specified if there is one type eld-6: Fixed value may only be specified if there is one type - eld-5: Either a namereference or a fixed value (but not both) is permitted + eld-11: Binding can only be present for coded elements, string, and uri + eld-8: Pattern and value are mutually exclusive + eld-14: Constraints must be unique by key + eld-13: Types must be unique by the combination of code and profile + eld-16: default value and meaningWhenMissing are mutually exclusive + eld-15: Constraint names must be unique. cod-1: If a valueSet is provided, a system URI Is required @@ -141,8 +147,8 @@ eld-4: Aggregation may only be specified if one of the allowed types for the element is a resource - eld-9: Example value sets are always extensible eld-10: provide either a reference or a description (or both) + eld-9: Example value sets are always extensible eld-12: uri SHALL start with http:// or https:// diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/subscription.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/subscription.sch index bd60f720cf8..e317f8504a1 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/subscription.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/subscription.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/substance.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/substance.sch index dafe65d4dbe..d88f545eb18 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/substance.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/substance.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -53,6 +53,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/supply.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/supply.sch index 87b5a336c20..cc0d87a6366 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/supply.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/supply.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -53,6 +53,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end @@ -65,6 +71,12 @@ ref-1: SHALL have a local reference if the resource is provided inline + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/supportingdocumentation.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/supportingdocumentation.sch index bff7b228aea..ea1a5fa294e 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/supportingdocumentation.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/supportingdocumentation.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,6 +47,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/valueset.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/valueset.sch index 00626bae815..ef6f8b161d5 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/valueset.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/valueset.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -49,8 +49,14 @@ vsd-7: A defined code system (if present) SHALL have a different identifier to the value set itself - vsd-5: Value set SHALL contain either a define, a compose, or an expansion element vsd-2: A value set with only one import SHALL also have an include and/or an exclude unless the value set defines its own codes + vsd-5: Value set SHALL contain either a define, a compose, or an expansion element + + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required per-1: If present, start SHALL have a lower value than end @@ -81,8 +87,8 @@ vsd-1: A value set composition SHALL have an include or an import - vsd-9: Must have a code if not abstract vsd-6: SHALL have a code or a display + vsd-9: Must have a code if not abstract vsd-10: Must have a system if a code is present diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/visionprescription.sch b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/visionprescription.sch index 97dbaf6d3e1..c01f38e30e5 100644 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/visionprescription.sch +++ b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/visionprescription.sch @@ -25,15 +25,15 @@ cod-1: If a valueSet is provided, a system URI Is required - dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated - dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources dom-1: If the resource is contained in another resource, it SHALL not contain any narrative + dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated + dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource - txt-2: The narrative SHALL have some non-whitespace content - txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, <a> elements (either name or href), images and internally contained style attributes + txt-2: The narrative SHALL have some non-whitespace content cod-1: If a valueSet is provided, a system URI Is required @@ -47,6 +47,12 @@ cod-1: If a valueSet is provided, a system URI Is required + + ccc-2: Only one coding in a set can be chosen directly by the user + + + cod-1: If a valueSet is provided, a system URI Is required + per-1: If present, start SHALL have a lower value than end diff --git a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/xmldsig-core-schema.xsd b/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/xmldsig-core-schema.xsd deleted file mode 100644 index 555a88bdbc9..00000000000 --- a/hapi-fhir-structures-dstu2/src/main/resources/ca/uhn/fhir/model/dstu2/schema/xmldsig-core-schema.xsd +++ /dev/null @@ -1,254 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/hapi-fhir-structures-dstu2/src/test/java/ca/uhn/fhir/narrative/DefaultThymeleafNarrativeGeneratorTestDstu2.java b/hapi-fhir-structures-dstu2/src/test/java/ca/uhn/fhir/narrative/DefaultThymeleafNarrativeGeneratorTestDstu2.java index 3d42211fb73..9e582979bb2 100644 --- a/hapi-fhir-structures-dstu2/src/test/java/ca/uhn/fhir/narrative/DefaultThymeleafNarrativeGeneratorTestDstu2.java +++ b/hapi-fhir-structures-dstu2/src/test/java/ca/uhn/fhir/narrative/DefaultThymeleafNarrativeGeneratorTestDstu2.java @@ -62,16 +62,17 @@ public class DefaultThymeleafNarrativeGeneratorTestDstu2 { NarrativeDt narrative = new NarrativeDt(); myGen.generateNarrative(value, narrative); String output = narrative.getDiv().getValueAsString(); + ourLog.info(output); assertThat(output, StringContains.containsString("
joe john BLOW
")); String title = myGen.generateTitle(value); assertEquals("joe john BLOW (123456)", title); - ourLog.info(title); +// ourLog.info(title); - value.getIdentifierFirstRep().setLabel("FOO MRN 123"); + value.getIdentifierFirstRep().setValue("FOO MRN 123"); title = myGen.generateTitle(value); assertEquals("joe john BLOW (FOO MRN 123)", title); - ourLog.info(title); +// ourLog.info(title); } diff --git a/hapi-fhir-structures-dstu2/src/test/java/ca/uhn/fhir/parser/JsonParserTest.java b/hapi-fhir-structures-dstu2/src/test/java/ca/uhn/fhir/parser/JsonParserTest.java index 426b8400c72..af4c49d0387 100644 --- a/hapi-fhir-structures-dstu2/src/test/java/ca/uhn/fhir/parser/JsonParserTest.java +++ b/hapi-fhir-structures-dstu2/src/test/java/ca/uhn/fhir/parser/JsonParserTest.java @@ -116,8 +116,8 @@ public class JsonParserTest { p.addName().addFamily("FAMILY"); List labels = new ArrayList(); - labels.add(new CodingDt().setSystem("SYSTEM1").setCode("CODE1").setDisplay("DISPLAY1").setPrimary(true).setVersion("VERSION1").setValueSet(new ResourceReferenceDt("ValueSet1"))); - labels.add(new CodingDt().setSystem("SYSTEM2").setCode("CODE2").setDisplay("DISPLAY2").setPrimary(false).setVersion("VERSION2").setValueSet(new ResourceReferenceDt("ValueSet2"))); + labels.add(new CodingDt().setSystem("SYSTEM1").setCode("CODE1").setDisplay("DISPLAY1").setPrimary(true).setVersion("VERSION1")); + labels.add(new CodingDt().setSystem("SYSTEM2").setCode("CODE2").setDisplay("DISPLAY2").setPrimary(false).setVersion("VERSION2")); ResourceMetadataKeyEnum.SECURITY_LABELS.put(p, labels); @@ -134,20 +134,14 @@ public class JsonParserTest { " \"version\":\"VERSION1\",\n" + " \"code\":\"CODE1\",\n" + " \"display\":\"DISPLAY1\",\n" + - " \"primary\":true,\n" + - " \"valueSet\":{\n" + - " \"reference\":\"ValueSet1\"\n" + - " }\n" + + " \"primary\":true\n" + " },\n" + " {\n" + " \"system\":\"SYSTEM2\",\n" + " \"version\":\"VERSION2\",\n" + " \"code\":\"CODE2\",\n" + " \"display\":\"DISPLAY2\",\n" + - " \"primary\":false,\n" + - " \"valueSet\":{\n" + - " \"reference\":\"ValueSet2\"\n" + - " }\n" + + " \"primary\":false\n" + " }\n" + " ]\n" + " },\n" + @@ -172,7 +166,6 @@ public class JsonParserTest { assertEquals("DISPLAY1", label.getDisplay()); assertEquals(true, label.getPrimary()); assertEquals("VERSION1", label.getVersion()); - assertEquals("ValueSet1", label.getValueSet().getReference().getValue()); label = (CodingDt) gotLabels.get(1); assertEquals("SYSTEM2", label.getSystem()); @@ -180,7 +173,6 @@ public class JsonParserTest { assertEquals("DISPLAY2", label.getDisplay()); assertEquals(false, label.getPrimary()); assertEquals("VERSION2", label.getVersion()); - assertEquals("ValueSet2", label.getValueSet().getReference().getValue()); } diff --git a/hapi-fhir-structures-dstu2/src/test/java/ca/uhn/fhir/parser/XmlParserTest.java b/hapi-fhir-structures-dstu2/src/test/java/ca/uhn/fhir/parser/XmlParserTest.java index 75ffb924410..1e03a19cfe2 100644 --- a/hapi-fhir-structures-dstu2/src/test/java/ca/uhn/fhir/parser/XmlParserTest.java +++ b/hapi-fhir-structures-dstu2/src/test/java/ca/uhn/fhir/parser/XmlParserTest.java @@ -217,8 +217,8 @@ public class XmlParserTest { p.addName().addFamily("FAMILY"); List labels = new ArrayList(); - labels.add(new CodingDt().setSystem("SYSTEM1").setCode("CODE1").setDisplay("DISPLAY1").setPrimary(true).setVersion("VERSION1").setValueSet(new ResourceReferenceDt("ValueSet1"))); - labels.add(new CodingDt().setSystem("SYSTEM2").setCode("CODE2").setDisplay("DISPLAY2").setPrimary(false).setVersion("VERSION2").setValueSet(new ResourceReferenceDt("ValueSet2"))); + labels.add(new CodingDt().setSystem("SYSTEM1").setCode("CODE1").setDisplay("DISPLAY1").setPrimary(true).setVersion("VERSION1")); + labels.add(new CodingDt().setSystem("SYSTEM2").setCode("CODE2").setDisplay("DISPLAY2").setPrimary(false).setVersion("VERSION2")); ResourceMetadataKeyEnum.SECURITY_LABELS.put(p, labels); @@ -234,9 +234,6 @@ public class XmlParserTest { "", "", "", - "", - "", - "", "", "", "", @@ -244,9 +241,6 @@ public class XmlParserTest { "", "", "", - "", - "", - "", "", "", "", @@ -266,7 +260,6 @@ public class XmlParserTest { assertEquals("DISPLAY1", label.getDisplay()); assertEquals(true, label.getPrimary()); assertEquals("VERSION1", label.getVersion()); - assertEquals("ValueSet1", label.getValueSet().getReference().getValue()); label = (CodingDt) gotLabels.get(1); assertEquals("SYSTEM2", label.getSystem()); @@ -274,7 +267,6 @@ public class XmlParserTest { assertEquals("DISPLAY2", label.getDisplay()); assertEquals(false, label.getPrimary()); assertEquals("VERSION2", label.getVersion()); - assertEquals("ValueSet2", label.getValueSet().getReference().getValue()); } @Test diff --git a/hapi-fhir-structures-dstu2/src/test/java/ca/uhn/fhir/rest/server/IncludeDstu2Test.java b/hapi-fhir-structures-dstu2/src/test/java/ca/uhn/fhir/rest/server/IncludeDstu2Test.java index f9eb52972f8..f0d8eab9ad6 100644 --- a/hapi-fhir-structures-dstu2/src/test/java/ca/uhn/fhir/rest/server/IncludeDstu2Test.java +++ b/hapi-fhir-structures-dstu2/src/test/java/ca/uhn/fhir/rest/server/IncludeDstu2Test.java @@ -378,12 +378,12 @@ public class IncludeDstu2Test { Patient p1 = new Patient(); p1.setId("p1"); - p1.addIdentifier().setLabel("p1"); + p1.addIdentifier().setValue("p1"); p1.getManagingOrganization().setResource(o1); Patient p2 = new Patient(); p2.setId("p2"); - p2.addIdentifier().setLabel("p2"); + p2.addIdentifier().setValue("p2"); p2.getManagingOrganization().setResource(o1); return Arrays.asList(p1, p2); @@ -397,12 +397,12 @@ public class IncludeDstu2Test { Patient p1 = new Patient(); p1.setId("p1"); - p1.addIdentifier().setLabel("p1"); + p1.addIdentifier().setValue("p1"); p1.addUndeclaredExtension(false, "http://foo", new ResourceReferenceDt(o1)); Patient p2 = new Patient(); p2.setId("p2"); - p2.addIdentifier().setLabel("p2"); + p2.addIdentifier().setValue("p2"); p2.addUndeclaredExtension(false, "http://foo", new ResourceReferenceDt(o1)); return Arrays.asList(p1, p2); @@ -421,12 +421,12 @@ public class IncludeDstu2Test { ExtPatient p1 = new ExtPatient(); p1.setId("p1"); - p1.addIdentifier().setLabel("p1"); + p1.addIdentifier().setValue("p1"); p1.getSecondOrg().setResource(o1); ExtPatient p2 = new ExtPatient(); p2.setId("p2"); - p2.addIdentifier().setLabel("p2"); + p2.addIdentifier().setValue("p2"); p2.getSecondOrg().setResource(o1); return Arrays.asList(p1, p2); @@ -439,12 +439,12 @@ public class IncludeDstu2Test { Patient p1 = new Patient(); p1.setId("p1"); - p1.addIdentifier().setLabel("p1"); + p1.addIdentifier().setValue("p1"); p1.getManagingOrganization().setResource(o1); Patient p2 = new Patient(); p2.setId("p2"); - p2.addIdentifier().setLabel("p2"); + p2.addIdentifier().setValue("p2"); p2.getManagingOrganization().setResource(o1); return Arrays.asList(p1, p2); diff --git a/hapi-fhir-structures-dstu2/src/test/java/ca/uhn/fhir/rest/server/ReadTest.java b/hapi-fhir-structures-dstu2/src/test/java/ca/uhn/fhir/rest/server/ReadTest.java index 4934c12fd4f..a0f41c08def 100644 --- a/hapi-fhir-structures-dstu2/src/test/java/ca/uhn/fhir/rest/server/ReadTest.java +++ b/hapi-fhir-structures-dstu2/src/test/java/ca/uhn/fhir/rest/server/ReadTest.java @@ -106,7 +106,7 @@ public class ReadTest { public Patient read(@IdParam IdDt theId) { Patient p1 = new Patient(); p1.setId("p1ReadId"); - p1.addIdentifier().setLabel("p1ReadValue"); + p1.addIdentifier().setValue("p1ReadValue"); return p1; } diff --git a/hapi-fhir-structures-dstu2/src/test/java/ca/uhn/fhir/rest/server/SearchWithDstu2BundleTest.java b/hapi-fhir-structures-dstu2/src/test/java/ca/uhn/fhir/rest/server/SearchWithDstu2BundleTest.java index 5ea7d194ecd..13ff660ed0e 100644 --- a/hapi-fhir-structures-dstu2/src/test/java/ca/uhn/fhir/rest/server/SearchWithDstu2BundleTest.java +++ b/hapi-fhir-structures-dstu2/src/test/java/ca/uhn/fhir/rest/server/SearchWithDstu2BundleTest.java @@ -100,7 +100,7 @@ public class SearchWithDstu2BundleTest { Patient p1 = new Patient(); p1.setId("Patient/123/_history/456"); - p1.addIdentifier().setLabel("p1ReadValue"); + p1.addIdentifier().setValue("p1ReadValue"); retVal.addEntry().setResource(p1); diff --git a/hapi-fhir-structures-dstu2/src/test/java/ca/uhn/fhir/validation/ResourceValidatorTest.java b/hapi-fhir-structures-dstu2/src/test/java/ca/uhn/fhir/validation/ResourceValidatorDstu2Test.java similarity index 90% rename from hapi-fhir-structures-dstu2/src/test/java/ca/uhn/fhir/validation/ResourceValidatorTest.java rename to hapi-fhir-structures-dstu2/src/test/java/ca/uhn/fhir/validation/ResourceValidatorDstu2Test.java index c3d7d2c4f00..aec58d43a04 100644 --- a/hapi-fhir-structures-dstu2/src/test/java/ca/uhn/fhir/validation/ResourceValidatorTest.java +++ b/hapi-fhir-structures-dstu2/src/test/java/ca/uhn/fhir/validation/ResourceValidatorDstu2Test.java @@ -18,41 +18,29 @@ import org.junit.Test; import ca.uhn.fhir.context.FhirContext; import ca.uhn.fhir.model.api.Bundle; import ca.uhn.fhir.model.dstu2.composite.TimingDt; +import ca.uhn.fhir.model.dstu2.resource.AllergyIntolerance; import ca.uhn.fhir.model.dstu2.resource.MedicationPrescription; import ca.uhn.fhir.model.dstu2.resource.OperationOutcome; import ca.uhn.fhir.model.dstu2.resource.Patient; import ca.uhn.fhir.model.dstu2.valueset.ContactPointSystemEnum; +import ca.uhn.fhir.model.dstu2.valueset.UnitsOfTimeEnum; import ca.uhn.fhir.model.primitive.DateDt; import ca.uhn.fhir.model.primitive.DateTimeDt; -public class ResourceValidatorTest { +public class ResourceValidatorDstu2Test { private static FhirContext ourCtx = FhirContext.forDstu2(); - private static final org.slf4j.Logger ourLog = org.slf4j.LoggerFactory.getLogger(ResourceValidatorTest.class); + private static final org.slf4j.Logger ourLog = org.slf4j.LoggerFactory.getLogger(ResourceValidatorDstu2Test.class); - @SuppressWarnings("deprecation") - @Test - public void testSchemaResourceValidator() throws IOException { - String res = IOUtils.toString(getClass().getClassLoader().getResourceAsStream("patient-example-dicom.json")); - Patient p = ourCtx.newJsonParser().parseResource(Patient.class, res); - - ourLog.info(ourCtx.newXmlParser().setPrettyPrint(true).encodeResourceToString(p)); + private FhirValidator createFhirValidator() { + + AllergyIntolerance allergy = new AllergyIntolerance(); + allergy.getSubstance().addCoding().setCode("some substance"); FhirValidator val = ourCtx.newValidator(); val.setValidateAgainstStandardSchema(true); - val.setValidateAgainstStandardSchematron(false); - - val.validate(p); - - p.getAnimal().getBreed().setText("The Breed"); - try { - val.validate(p); - fail(); - } catch (ValidationFailureException e) { - ourLog.info(ourCtx.newXmlParser().setPrettyPrint(true).encodeResourceToString(e.getOperationOutcome())); - assertEquals(1, e.getOperationOutcome().getIssue().size()); - assertThat(e.getOperationOutcome().getIssueFirstRep().getDetailsElement().getValue(), containsString("Invalid content was found starting with element 'breed'")); - } + val.setValidateAgainstStandardSchematron(true); + return val; } /** @@ -92,8 +80,8 @@ public class ResourceValidatorTest { MedicationPrescription p = (MedicationPrescription) b.getEntries().get(0).getResource(); TimingDt timing = new TimingDt(); - timing.getRepeat().setCount(5); - timing.getRepeat().setEnd(DateTimeDt.withCurrentTime()); + timing.getRepeat().setDuration(123); + timing.getRepeat().setDurationUnits((UnitsOfTimeEnum)null); p.getDosageInstructionFirstRep().setScheduled(timing); try { @@ -102,7 +90,74 @@ public class ResourceValidatorTest { } catch (ValidationFailureException e) { String encoded = ourCtx.newXmlParser().setPrettyPrint(true).encodeResourceToString(e.getOperationOutcome()); ourLog.info(encoded); - assertThat(encoded, containsString("Invalid content was found starting with element 'end'")); + assertThat(encoded, containsString("if there's a duration, there needs to be")); + } + } + + @Test + public void testSchemaBundleValidatorFails() throws IOException { + String res = IOUtils.toString(getClass().getClassLoader().getResourceAsStream("bundle-example.json")); + Bundle b = ourCtx.newJsonParser().parseBundle(res); + + FhirValidator val = createFhirValidator(); + + ValidationResult validationResult = val.validateWithResult(b); + assertTrue(validationResult.isSuccessful()); + + MedicationPrescription p = (MedicationPrescription) b.getEntries().get(0).getResource(); + TimingDt timing = new TimingDt(); + timing.getRepeat().setDuration(123); + timing.getRepeat().setDurationUnits((UnitsOfTimeEnum)null); + p.getDosageInstructionFirstRep().setScheduled(timing); + + validationResult = val.validateWithResult(b); + assertFalse(validationResult.isSuccessful()); + OperationOutcome operationOutcome = (OperationOutcome) validationResult.getOperationOutcome(); + String encoded = ourCtx.newXmlParser().setPrettyPrint(true).encodeResourceToString(operationOutcome); + ourLog.info(encoded); + assertThat(encoded, containsString("if there's a duration, there needs to be")); + } + + @Test + public void testSchemaBundleValidatorIsSuccessful() throws IOException { + String res = IOUtils.toString(getClass().getClassLoader().getResourceAsStream("bundle-example.json")); + Bundle b = ourCtx.newJsonParser().parseBundle(res); + + ourLog.info(ourCtx.newXmlParser().setPrettyPrint(true).encodeBundleToString(b)); + + FhirValidator val = createFhirValidator(); + + ValidationResult result = val.validateWithResult(b); + + OperationOutcome operationOutcome = (OperationOutcome) result.getOperationOutcome(); + + assertTrue(result.toString(), result.isSuccessful()); + assertNotNull(operationOutcome); + assertEquals(0, operationOutcome.getIssue().size()); + } + + @SuppressWarnings("deprecation") + @Test + public void testSchemaResourceValidator() throws IOException { + String res = IOUtils.toString(getClass().getClassLoader().getResourceAsStream("patient-example-dicom.json")); + Patient p = ourCtx.newJsonParser().parseResource(Patient.class, res); + + ourLog.info(ourCtx.newXmlParser().setPrettyPrint(true).encodeResourceToString(p)); + + FhirValidator val = ourCtx.newValidator(); + val.setValidateAgainstStandardSchema(true); + val.setValidateAgainstStandardSchematron(false); + + val.validate(p); + + p.getAnimal().getBreed().setText("The Breed"); + try { + val.validate(p); + fail(); + } catch (ValidationFailureException e) { + ourLog.info(ourCtx.newXmlParser().setPrettyPrint(true).encodeResourceToString(e.getOperationOutcome())); + assertEquals(1, e.getOperationOutcome().getIssue().size()); + assertThat(e.getOperationOutcome().getIssueFirstRep().getDetailsElement().getValue(), containsString("Invalid content was found starting with element 'breed'")); } } @@ -130,53 +185,4 @@ public class ResourceValidatorTest { validationResult = val.validateWithResult(p); assertTrue(validationResult.isSuccessful()); } - - @Test - public void testSchemaBundleValidatorIsSuccessful() throws IOException { - String res = IOUtils.toString(getClass().getClassLoader().getResourceAsStream("bundle-example.json")); - Bundle b = ourCtx.newJsonParser().parseBundle(res); - - ourLog.info(ourCtx.newXmlParser().setPrettyPrint(true).encodeBundleToString(b)); - - FhirValidator val = createFhirValidator(); - - ValidationResult result = val.validateWithResult(b); - - OperationOutcome operationOutcome = (OperationOutcome) result.getOperationOutcome(); - - assertTrue(result.toString(), result.isSuccessful()); - assertNotNull(operationOutcome); - assertEquals(0, operationOutcome.getIssue().size()); - } - - @Test - public void testSchemaBundleValidatorFails() throws IOException { - String res = IOUtils.toString(getClass().getClassLoader().getResourceAsStream("bundle-example.json")); - Bundle b = ourCtx.newJsonParser().parseBundle(res); - - FhirValidator val = createFhirValidator(); - - ValidationResult validationResult = val.validateWithResult(b); - assertTrue(validationResult.isSuccessful()); - - MedicationPrescription p = (MedicationPrescription) b.getEntries().get(0).getResource(); - TimingDt timing = new TimingDt(); - timing.getRepeat().setCount(5); - timing.getRepeat().setEnd(DateTimeDt.withCurrentTime()); - p.getDosageInstructionFirstRep().setScheduled(timing); - - validationResult = val.validateWithResult(b); - assertFalse(validationResult.isSuccessful()); - OperationOutcome operationOutcome = (OperationOutcome) validationResult.getOperationOutcome(); - String encoded = ourCtx.newXmlParser().setPrettyPrint(true).encodeResourceToString(operationOutcome); - ourLog.info(encoded); - assertThat(encoded, containsString("Invalid content was found starting with element 'end'")); - } - - private FhirValidator createFhirValidator() { - FhirValidator val = ourCtx.newValidator(); - val.setValidateAgainstStandardSchema(true); - val.setValidateAgainstStandardSchematron(true); - return val; - } } diff --git a/hapi-tinder-plugin/pom.xml b/hapi-tinder-plugin/pom.xml index 54ca7ac4ee5..0cf79f12309 100644 --- a/hapi-tinder-plugin/pom.xml +++ b/hapi-tinder-plugin/pom.xml @@ -106,6 +106,15 @@ 3.2 provided + + + + org.ini4j + ini4j + 0.5.4 + test + + diff --git a/hapi-tinder-plugin/src/main/java/ca/uhn/fhir/tinder/util/SyncUtil.java b/hapi-tinder-plugin/src/main/java/ca/uhn/fhir/tinder/util/SyncUtil.java index 902aa638bf3..b8ae5ecbffd 100644 --- a/hapi-tinder-plugin/src/main/java/ca/uhn/fhir/tinder/util/SyncUtil.java +++ b/hapi-tinder-plugin/src/main/java/ca/uhn/fhir/tinder/util/SyncUtil.java @@ -29,6 +29,8 @@ private static final org.slf4j.Logger ourLog = org.slf4j.LoggerFactory.getLogger fw.close(); ourLog.info("Fixed {} valuesets", b.getEntry().size()); + + } } diff --git a/hapi-tinder-plugin/src/main/resources/dt/dstu2/activitydefinition.xml b/hapi-tinder-plugin/src/main/resources/dt/dstu2/activitydefinition.xml index f202a029deb..b438c288bcf 100644 --- a/hapi-tinder-plugin/src/main/resources/dt/dstu2/activitydefinition.xml +++ b/hapi-tinder-plugin/src/main/resources/dt/dstu2/activitydefinition.xml @@ -5637,9 +5637,9 @@ - + - + diff --git a/hapi-tinder-plugin/src/main/resources/dt/dstu2/address.xml b/hapi-tinder-plugin/src/main/resources/dt/dstu2/address.xml index 2683d11a4d4..ff14229acf3 100644 --- a/hapi-tinder-plugin/src/main/resources/dt/dstu2/address.xml +++ b/hapi-tinder-plugin/src/main/resources/dt/dstu2/address.xml @@ -24,7 +24,7 @@ 987055206075 - 9 + 8 False False @@ -5892,9 +5892,9 @@ - + - +
@@ -6795,7 +6795,7 @@ http://hl7.org/fhir/v2/vs/0190 - http://hl7.org/fhir/v3/vs/AddressUse + AddressUse @@ -7232,12 +7232,13 @@ 600 600 + 1 1 1 - 1 + 5 0 @@ -7245,13 +7246,15 @@ 1 + 1 2 0 - 0 + 2 + 11 False @@ -7922,7 +7925,6 @@ - 1 diff --git a/hapi-tinder-plugin/src/main/resources/dt/dstu2/attachment.xml b/hapi-tinder-plugin/src/main/resources/dt/dstu2/attachment.xml index 1e9dbf1429a..902b75cb1df 100644 --- a/hapi-tinder-plugin/src/main/resources/dt/dstu2/attachment.xml +++ b/hapi-tinder-plugin/src/main/resources/dt/dstu2/attachment.xml @@ -10,13 +10,22 @@ Lloyd 2012-03-19T11:12:07Z 2014-11-17T05:30:16Z - 12.00 + 14.00 + + + + + Invariants + Invariants + 2580 9870 5520 6075 + 1 + False False @@ -192,20 +201,14 @@ + - - + - - + - + - + - + - - - + - - + - - - - + - + - - - + - - - + - - + - + - + - - - + - - + - - - - + - + - - - + - - - @@ -281,7 +279,42 @@ + + + + - - - - - - - - - - - + + + + - - - - + + + + - - - - - - - + @@ -669,14 +670,46 @@ - + + + + + - - - - + + + - + - - + - - + - + - - - + - - + - - - - + - + - - - @@ -826,9 +827,9 @@ + ss:RefersTo="='Data Elements'!R1C1:R101C25" ss:Hidden="1"/> -
@@ -1149,7 +1150,7 @@ y - DocumentC80ClassDocumentC80Class class @@ -1876,6 +1877,42 @@ + + Composition.section.content + + 0..1 + 1 + Reference(List) + + + + + + + + + The Content of the section (narrative + data entries) + The content (narrative and data entries) associated with the section + + Because composition represent point-in-time snapshots, resource references should either be to a specific version, or made against resources on the same server with full version tracking, so that the correct versions can easily be assembled. + + unique(./outboundRelationship[typeCode="COMP" and isNormalActRelationship()]/target[moodCode="EVN" and classCode!="DOCSECT" and isNormalAct]) + + n/a + + + + + Composition.section.section @@ -1913,43 +1950,7 @@ - - Composition.section.content - - 0..1 - 1 - Reference(List) - - - - - - - - - The Content of the section (narrative + data entries) - The content (narrative and data entries) associated with the section - - Because composition represent point-in-time snapshots, resource references should either be to a specific version, or made against resources on the same server with full version tracking, so that the correct versions can easily be assembled. - - unique(./outboundRelationship[typeCode="COMP" and isNormalActRelationship()]/target[moodCode="EVN" and classCode!="DOCSECT" and isNormalAct]) - - n/a - - - - - - + @@ -3867,31 +3868,31 @@ - - - - - - - - - - - - - - + + + + + + + + + + + - - + - + + + + +
@@ -3906,11 +3907,12 @@ 600 600 + 70 1 - 1 + 24 1 1 0 @@ -3923,18 +3925,18 @@ 2 + 1 0 - 5 - 7 + 27 False False - R2C23:R100C23 + R2C23:R28C23,R30C23:R101C23 List "left,right,up,down,[xpixels];[ypixels]" @@ -3942,21 +3944,21 @@ Info - R2C19:R100C22 + R2C19:R28C22,R30C19:R101C22 List "N/A" - R2C8:R100C9 + R2C8:R28C9,R30C8:R101C9 List "Bindings!A2..A30" - R3C6:R100C7 + R3C6:R28C7,R30C6:R101C7 List "Y,N" @@ -3968,20 +3970,20 @@ "DomainResource,Type,Resource,Structure" - R3C5:R100C5 + R3C5:R28C5,R30C5:R101C5 List "*,Reference(A|B),boolean,string,code,id,oid,uuid,integer,decimal,date,dateTime,time,instant,uri,base64Binary,CodeableConcept,Coding,Identifier,Period,Timing,Range,Quantity,Age,Distance,Duration,Count,Money,Ratio,HumanName,Address,ContactPoint,SampledData" - R2C4,R4C4:R100C4 + R2C4,R4C4:R28C4,R30C4:R101C4 List '\work\org.hl7.fhir\build\source\alert\[Invariants]Invariants'!#REF! - R2C3:R100C3 + R2C3:R28C3,R30C3:R101C3 List "0..1,1..1,0..*,1..*" @@ -3992,18 +3994,18 @@ Invariantids - - R2C14:R100C14 + R30C14:R101C14,R2C14:R28C14 (RC1="")<>(RC="") - R2C1:R100C25 + R30C1:R101C25,R2C1:R28C25 RC3="0..0" @@ -4014,7 +4016,7 @@ - R2C1:R100C1 + R2C1:R26C1,R31C1:R101C1 AND(RC<>"",R[-1]C="") @@ -4028,35 +4030,35 @@ - R3C3:R100C3,R2C15:R100C15 + R30C15:R101C15,R2C15:R28C15,R30C3:R101C3,R3C3:R28C3 (RC1="")<>(RC="") - R2C10:R100C10,R2C13:R100C13 + R30C13:R101C13,R2C13:R28C13,R30C10:R101C10,R2C10:R28C10 AND(SEARCH("|",RC5)<>0,RC<>"") - R2C11:R100C11,R2C13:R100C13 + R30C13:R101C13,R2C13:R28C13,R30C11:R101C11,R2C11:R28C11 AND(RC<>"",NOT(EXACT(LEFT(RC5,1),LOWER(LEFT(RC5,1))))) - R2C11:R100C12 + R30C11:R101C12,R2C11:R28C12 AND(RC11<>"",RC12<>"") - R2C14:R100C15 + R30C14:R101C15,R2C14:R28C15 AND(RC14<>"",RC14=RC15) @@ -4070,26 +4072,68 @@ - R3C19:R100C20 + R30C19:R101C20,R3C19:R28C20 AND(RC1<>"",ISERR(SEARCH("N/A",R2C)),RC="") - R2C23:R100C23 + R2C23:R25C23,R30C23:R101C23 AND(RC<>"",LEFT(RC5,1)<>"@",LEFT(R[1]C1,LEN(RC1)+1)<>(RC1&"."),LEFT(R[1]C1,LEN(RC1)+2)<>("!"&RC1&".")) - R2C1:R100C25 + R30C1:R101C25,R2C1:R28C25 LEFT(RC1,1)="!" + + R28C1 + + AND(RC<>"",R[-2]C="") + + + + + R26C23 + + AND(RC<>"",LEFT(RC5,1)<>"@",LEFT(R[2]C1,LEN(RC1)+1)<>(RC1&"."),LEFT(R[2]C1,LEN(RC1)+2)<>("!"&RC1&".")) + + + + + R27C1 + + AND(RC<>"",R[1]C="") + + + + + R30C1 + + AND(RC<>"",R[-3]C="") + + + + + R27C23 + + AND(RC<>"",LEFT(RC5,1)<>"@",LEFT(R[3]C1,LEN(RC1)+1)<>(RC1&"."),LEFT(R[3]C1,LEN(RC1)+2)<>("!"&RC1&".")) + + + + + R28C23 + + AND(RC<>"",LEFT(RC5,1)<>"@",LEFT(R[-1]C1,LEN(RC1)+1)<>(RC1&"."),LEFT(R[-1]C1,LEN(RC1)+2)<>("!"&RC1&".")) + + +
- + Element RIM Mapping
- - - - - - + x:FullRows="1" ss:StyleID="s102" ss:DefaultRowHeight="15"> + + + + + + - IdId Unique Number - NameName Unique short label - SeveritySeverity Indicates impact of violating the invariant. (Defaults to 'error') - ContextContext Element path at which check should occur. E.g. ResourceName.element1.element2 - EnglishEnglish English description of constraint - OCLOCL Optional - OCL expression of the rule - XPathXPath XPath 2 expression. See wiki or make Lloyd do it :> - 11 Section Content Composition.section A section must have either subsections or content - (exists(f:content) and not(exists(f:section))) or (exists(f:section) and not(exists(f:content))) + (exists(f:content) and not(exists(f:section))) or (exists(f:section) and not(exists(f:content))) - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - + + + + + +
@@ -4653,17 +4697,17 @@ False False - - R2C4:R49C4 - List - 'Data Elements'!R2C1:R100C1 - R2C3:R49C3 List "error,warning" + + R2C4:R49C4 + List + 'Data Elements'!R2C1:R101C1 + @@ -4708,235 +4752,235 @@ ss:Hidden="1"/> - - - - - - - Name + + + + + + + NameUnique name for search parameter - required, lower-case, dash-delimited string - TypeType Data type for parameter - Target TypesTarget Types Comma delimited list of target resources - PathPath Corresponding resource element. E.g. ResourceName.node1.node2 - DescriptionDescription Explanation of param. Will default if omitted and Path is specified, otherwise it is required - type + type token - Composition.type - + Composition.type + - class + class token - Composition.class - + Composition.class + - date + date date - Composition.date - + Composition.date + - subject + subject reference - Composition.subject - + Composition.subject + - author + author reference - Composition.author - + Composition.author + - attester + attester reference - Composition.attester.party - + Composition.attester.party + - context + context token - Composition.event.code - + Composition.event.code + - section + section reference - Composition.section.content - + Composition.section.content + - identifier + identifier token - Composition.identifier - + Composition.identifier + - title + title string - Composition.title - + Composition.title + - status + status token - Composition.status - + Composition.status + - confidentiality + confidentiality token - Composition.confidentiality - + Composition.confidentiality + - period + period date - Composition.event.period - + Composition.event.period + - section-code + section-code token - Composition.section.code - + Composition.section.code + - patient + patient reference Patient - Composition.subject - + Composition.subject + - encounter + encounter reference - Composition.encounter - + Composition.encounter + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - + +
@@ -5044,595 +5088,595 @@ ss:Hidden="1"/> - - - - - - - + x:FullRows="1" ss:StyleID="s111" ss:DefaultRowHeight="15"> + + + + + + + - NameName The name of the operation or parameter (parameters prefixed by operation name + ".") - UseUse "System | Resource | Instance" (operation) "In" or "Out" (parameter) - MinMin Minimum cardinality for a parameter (must be a non-negative integer) - MaxMax maximum cardinality for a parameter - must be "*" or a positive integer - TypeType query/operation for operation; data type for a parameter - ProfileProfile Profile that must apply to parameter's type - TitleTitle The descriptive label for the operation - DocumentationDocumentation Explanation of the operation or parameter - FooterFooter Additional usage notes for an operation - documentdocument - ResourceResource - - - operation + + operation - - Generate a Document + Generate a Document - A client can ask a server to generate a fully bundled document from a composition resource. The server takes the composition resource, locates all the referenced resources and other additional resources as configured or requested and either returns a full document bundle, or returns an error. Note that since this is a search operation, the document bundle is wrapped inside the search bundle. If some of the resources are located on other servers, it is at the discretion of the server whether to retrieve them or return an error. If the correct version of the document that would be generated already exists, then the server can return the existing one.A client can ask a server to generate a fully bundled document from a composition resource. The server takes the composition resource, locates all the referenced resources and other additional resources as configured or requested and either returns a full document bundle, or returns an error. Note that since this is a search operation, the document bundle is wrapped inside the search bundle. If some of the resources are located on other servers, it is at the discretion of the server whether to retrieve them or return an error. If the correct version of the document that would be generated already exists, then the server can return the existing one. - + - document.persist - in - 0 - 1 - boolean - - Whether to store the document once it is generated - Whether to store the document at the document end-point (/Document) or not once it is generated. Value = true or false (default is for the server to decide) - + document.persist + in + 0 + 1 + boolean + + Whether to store the document once it is generated + Whether to store the document at the document end-point (/Document) or not once it is generated. Value = true or false (default is for the server to decide) + - document.cert - in - 0 - 1 - string - - Certificate URL to use to sign the document with - Certificate URL to use to sign the document with. The certificate should be associated with one of the attestors - + document.cert + in + 0 + 1 + string + + Certificate URL to use to sign the document with + Certificate URL to use to sign the document with. The certificate should be associated with one of the attestors + - document.pword - in - 0 - 1 - string - - Password for private key if certificate requires one - Password for private key if certificate requires one and the server doesn't know it by some other means. Putting the password in the URL has obvious security implications to consider. An alternative is for the client to sign the document - + document.pword + in + 0 + 1 + string + + Password for private key if certificate requires one + Password for private key if certificate requires one and the server doesn't know it by some other means. Putting the password in the URL has obvious security implications to consider. An alternative is for the client to sign the document + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - - + + + + + + +
@@ -5785,255 +5829,255 @@ ss:Hidden="1"/> - - - - - - - - + x:FullRows="1" ss:StyleID="s111" ss:DefaultRowHeight="15"> + + + + + + + + - Event CodeEvent Code Unique code for the event. E.g. patient-link - CategoryCategory Impact of message and time-sensitiveness for processing (see wiki/spec) - DescriptionDescription What triggers the event and what behavior it drives - NotesNotes Additional implementer guidance - Request ResourcesRequest Resources Comma-separated list of focal resources for request - Response ResourcesResponse Resources Comma-separated list of focal resources for response - Request AggregationsRequest Aggregations - Response AggregationsResponse Aggregations - Follow UpsFollow Ups - + - - - - - - + + + + + + - + - - - - - - + + + + + + - + - - - - - - + + + + + + - + - - - - - - + + + + + + - + - - - - - - + + + + + + - + - - - - - - + + + + + + - + - - - - - - + + + + + + - + - - - - - - + + + + + + - + - - - - - - + + + + + + - + - - - - - - + + + + + + - + - - - - - - + + + + + + - + - - - - - - + + + + + + - + - - - - - - + + + + + + - + - - - - - - + + + + + + - + - - - - - - + + + + + + - + - - - - - - + + + + + + - + - - - - - - + + + + + + - + - - - - - - + + + + + + - - - - - - - - + + + + + + + +
@@ -6116,269 +6160,269 @@ - - - - + x:FullRows="1" ss:StyleID="s111" ss:DefaultRowHeight="15"> + + + + - NameName Label for profile Comment the row by starting with '!' - FilenameFilename Name of the resulting profile resource-something-profile.xml or …profile.spreadsheet.xml - SourceSource Name of profile spreadsheet or XML file. Defaults to same as Filename - TypeType Type of source (spreadsheet or profile XML file). Default is spreadsheet IG Name - Measure ReportMeasure Report - composition-measurereport.xmlcomposition-measurereport.xml - composition-measurereport-profile-spreadsheet.xmlcomposition-measurereport-profile-spreadsheet.xml - spreadsheetspreadsheet cqmf - Clinical Document - composition-clinicaldocument-spreadsheet.xml - composition-clinicaldocument-spreadsheet.xml - spreadsheet + Clinical Document + composition-clinicaldocument-spreadsheet.xml + composition-clinicaldocument-spreadsheet.xml + spreadsheet core - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - - + + +
@@ -6458,46 +6502,46 @@ ss:Hidden="1"/> - - - - - - + + + + + + - NameName Descriptive Name - TypeType Default = XML. Leave at default unless told otherwise - DescriptionDescription Description of content/purposes of example - IdentityIdentity resource id - FilenameFilename Filename of XML example file. E.g. resource-example-file-name.xml - ProfileProfile Name of the profile example is associated with (and should be published with) - In BookIn Book Include this example in the book form? - ExampleExample Simple Example of a Composition composition-example.xml - - y + y - DischargeSummary + DischargeSummary Example of a discharge summary father document-example-dischargesummary.xml - - y + + y - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - - - - - + + + + +
@@ -6948,507 +6992,507 @@ ss:Hidden="1"/> - - - - - - - - - - - - + x:FullRows="1" ss:StyleID="s111" ss:DefaultRowHeight="15"> + + + + + + + + + + + + - Binding NameBinding Name Unique name across all resources - DefinitionDefinition Formal description of the types of codes allowed for elements with this binding - BindingBinding How is the set of codes defined? - ExampleExample Y = example, blank = incomplete. Only relevant if binding is "value set" - ReferenceReference #tab-name or value set filename(without extension) or URL for reference - DescriptionDescription Text to display for reference bindings (not used otherwise) - OIDOID The OID for the code list if one already exists. (If omitted, one will be assigned) - URIURI Full URI for the code list. (If not specified, defaults to http://hl7.org/fhir/vs - Website/EmailWebsite/Email Contact information for the code list (if different from standard HL7 FHIR contact info) - CopyrightCopyright Copyright information associated with the code list. If not specified, Public Domain assumed - v2v2 uri of v2 value set mapped to - v3v3 uri of v3 value set mapped to - Committee NotesCommittee Notes Unpublished notes - CompositionSectionType + CompositionSectionType Classification of a section of a composition / document - value set - - valueset-doc-section-codes - - - - - - - + value set + valueset-doc-section-codes + + + + + + + + - CompositionAttestationMode + CompositionAttestationMode The way in which a person authenticated a composition - code list - - #composition-attestation-mode - - - - - - - + code list + #composition-attestation-mode + + + + + + + + - DocumentType + DocumentType Type of a composition - value set - - valueset-doc-typecodes - - - - - - - + value set + valueset-doc-typecodes + + + + + + + + - DocumentConfidentiality + DocumentConfidentiality Codes specifying the level of confidentiality of the composition - value set - - http://hl7.org/fhir/v3/vs/Confidentiality - - - - - - - + value set + http://hl7.org/fhir/v3/vs/Confidentiality + + + + + + + + - CompositionStatus + CompositionStatus The workflow/clinical status of the composition - code list - - #composition-status - - - - - - - http://hl7.org/fhir/v3/vs/ActStatus + code list + #composition-status + + + + + + + http://hl7.org/fhir/v3/vs/ActStatus + - DocumentEventType + DocumentEventType This list of codes represents the main clinical acts being documented - value set - - http://hl7.org/fhir/v3/vs/ActCode - - - - - - - + value set + http://hl7.org/fhir/v3/vs/ActCode + + + + + + + + - + - - - - - - - - - - + + + + + + + + + + - + - - - - - - - - - - + + + + + + + + + + - + - - - - - - - - - - + + + + + + + + + + - + - - - - - - - - - - + + + + + + + + + + - + - - - - - - - - - - + + + + + + + + + + - + - - - - - - - - - - + + + + + + + + + + - + - - - - - - - - - - + + + + + + + + + + - + - - - - - - - - - - + + + + + + + + + + - + - - - - - - - - - - + + + + + + + + + + - + - - - - - - - - - - + + + + + + + + + + - + - - - - - - - - - - + + + + + + + + + + - + - - - - - - - - - - + + + + + + + + + + - + - - - - - - - - - - + + + + + + + + + + - + - - - - - - - - - - + + + + + + + + + + - + - - - - - - - - - - + + + + + + + + + + - + - - - - - - - - - - + + + + + + + + + + - + - - - - - - - - - - + + + + + + + + + + - + - - - - - - - - - - + + + + + + + + + + - + - - - - - - - - - - + + + + + + + + + + - + - - - - - - - - - - + + + + + + + + + + - + - - - - - - - - - - + + + + + + + + + + - + - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - + + + + + + + + + +
@@ -7560,590 +7604,590 @@ ss:RefersTo="='composition-attestation-mode'!R1C1:R1C9" ss:Hidden="1"/> - - - - - - - + x:FullRows="1" ss:StyleID="s136" ss:DefaultRowHeight="15"> + + + + + + + - CodeCode The code to be sent over the wire - IdId Unique number for the code. Required when System is not specified, not permitted otherwise - SystemSystem The URL of the external code system from which the list is selected. Must be the same for all codes if specified. - ParentParent The code this code is a specialization of (if any). Content should be "#" + the Id of the parent code - DisplayDisplay Display value for code. Omit if the code *is* the display value (as for internal codes) - DefinitionDefinition Meaning of the code. Include unless meaning obvious to all users. Required if display not - v2v2 Mappings to v2 codes - See wiki for syntax - v3v3 Mappings to v3 codes - See wiki for syntax - Committee NotesCommittee Notes Additional notes about the code. Not published - personal - 1 - + personal + 1 + The person authenticated the content in their personal capacity - - - + + + - professional - 2 - + professional + 2 + The person authenticated the content in their professional capacity - - - + + + - legal - 3 - + legal + 3 + The person authenticated the content and accepted legal responsibility for its content - - - + + + - official - 4 - + official + 4 + The organization authenticated the content as consistent with their policies and procedures - - - + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - + + + - - - + + +
@@ -8230,590 +8274,590 @@ ss:RefersTo="='composition-status'!R1C1:R1C9" ss:Hidden="1"/> - - - - - - - + x:FullRows="1" ss:StyleID="s136" ss:DefaultRowHeight="15"> + + + + + + + - CodeCode The code to be sent over the wire - IdId Unique number for the code. Required when System is not specified, not permitted otherwise - SystemSystem The URL of the external code system from which the list is selected. Must be the same for all codes if specified. - ParentParent The code this code is a specialization of (if any). Content should be "#" + the Id of the parent code - DisplayDisplay Display value for code. Omit if the code *is* the display value (as for internal codes) - DefinitionDefinition Meaning of the code. Include unless meaning obvious to all users. Required if display not - v2v2 Mappings to v2 codes - See wiki for syntax - v3v3 Mappings to v3 codes - See wiki for syntax - Committee NotesCommittee Notes Additional notes about the code. Not published - preliminary - 1 - + preliminary + 1 + This is a preliminary composition or document (also known as initial or interim). The content may be incomplete or unverified - - ~ActStatus.active - Compositions are sometimes shared prior to being finalised + + ~ActStatus.active + Compositions are sometimes shared prior to being finalised - final - 2 - + final + 2 + This version of the composition is complete and verified by an appropriate person and no further work is planned. Any subsequent updates would be on a new version of the composition. - - <ActStatus.completed - + + <ActStatus.completed + - appended - 3 - + appended + 3 + The composition or document has been modified subsequent to being released as "final", and is complete and verified by an authorized person. The modifications added new information to the composition or document, but did not revise existing content - - <ActStatus.completed - If systems are not able to be sure whether existing information has changed or not, they should use the status "amended" + + <ActStatus.completed + If systems are not able to be sure whether existing information has changed or not, they should use the status "amended" - amended - 4 - + amended + 4 + The composition or document has been modified subsequent to being released as "final", and is complete and verified by an authorized person - - <ActStatus.completed - + + <ActStatus.completed + - entered-in-error - 5 - + entered-in-error + 5 + The composition or document was originally created/issued in error, and this is an amendment that marks that the entire series should not be considered as valid - - ~ActStatus.nullified - Usually this is because some major error has been detected in the workflow that created the composition or document, or the content was associated with the wrong patient/author etc. + + ~ActStatus.nullified + Usually this is because some major error has been detected in the workflow that created the composition or document, or the content was associated with the wrong patient/author etc. - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - + + + - - - + + +
@@ -8901,590 +8945,590 @@ ss:Hidden="1"/> - - - - - - - + x:FullRows="1" ss:StyleID="s136" ss:DefaultRowHeight="15"> + + + + + + + - CodeCode The code to be sent over the wire - IdId Unique number for the code. Required when System is not specified, not permitted otherwise - SystemSystem The URL of the external code system from which the list is selected. Must be the same for all codes if specified. - ParentParent The code this code is a specialization of (if any). Content should be "#" + the Id of the parent code - DisplayDisplay Display value for code. Omit if the code *is* the display value (as for internal codes) - DefinitionDefinition Meaning of the code. Include unless meaning obvious to all users. Required if display not - v2v2 Mappings to v2 codes - See wiki for syntax - v3v3 Mappings to v3 codes - See wiki for syntax - Committee NotesCommittee Notes Additional notes about the code. Not published - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - + + + - - - + + +
diff --git a/hapi-tinder-plugin/src/main/resources/res/dstu2/condition-spreadsheet.xml b/hapi-tinder-plugin/src/main/resources/res/dstu2/condition-spreadsheet.xml index e89f286b570..7844a3f7893 100644 --- a/hapi-tinder-plugin/src/main/resources/res/dstu2/condition-spreadsheet.xml +++ b/hapi-tinder-plugin/src/main/resources/res/dstu2/condition-spreadsheet.xml @@ -10,7 +10,7 @@ Eric Haas 2012-03-19T11:12:07Z 2014-12-06T08:02:00Z - 14.00 + 12.00 @@ -20,7 +20,7 @@ 25605 0 0 - 9 + 1 False False @@ -796,7 +796,7 @@ - + - + -
@@ -1266,7 +1266,7 @@ - provisional | working | confirmed | refutedprovisional | working | confirmed | refuted | entered-in-error | unknown The clinical status of the condition @@ -1505,7 +1505,7 @@ ss:Name="_FilterDatabase"/> 1 - Reference(Any)Reference(ClinicalImpression|DiagnosticReport|Observation) @@ -1578,7 +1578,8 @@ ss:Name="_FilterDatabase"/> - + ManifestationOrSymptom @@ -1669,18 +1670,18 @@ - Condition.location.codeCondition.location.site[x] 0..1 - 3 - CodeableConcept + CodeableConcept | Reference(BodySite) - + BodySite @@ -1704,40 +1705,6 @@ - - Condition.location.detail - - 0..1 - 3 - string - - - - - - - - - Precise location details - Detailed anatomical location information - - - - .originalText - - - - - - - Condition.dueTo @@ -1785,7 +1752,7 @@ ss:Name="_FilterDatabase"/> - ConditionKindConditionCause @@ -1890,7 +1857,7 @@ ss:Name="_FilterDatabase"/> - ConditionKindConditionPredecessor @@ -3886,10 +3853,11 @@ 600 600 + 1 - 6 + 13 1 1 0 @@ -3906,172 +3874,415 @@ 0 - 12 - 4 + 21 + 3 False False 0 - - R2C23:R100C23 - List - - "left,right,up,down,[xpixels];[ypixels]" - - Info - - - R2C19:R100C22 - List - - "N/A" - - - - R2C8:R100C9 - List - - "Bindings!A2..A30" - - - - R3C6:R100C7 - List - - "Y,N" - R2C5 List "DomainResource,Type,Resource,Structure" - - R3C5:R100C5 - List - - "*,Reference(A|B),boolean,string,code,id,oid,uuid,integer,decimal,date,dateTime,time,instant,uri,base64Binary,CodeableConcept,Coding,Identifier,Period,Timing,Range,Quantity,Age,Distance,Duration,Count,Money,Ratio,HumanName,Address,ContactPoint,SampledData" - - - - R2C3:R100C3 - List - - "0..1,1..1,0..*,1..*" - R3C4 List Invariantids - + R2C23:R99C23 + List + + "left,right,up,down,[xpixels];[ypixels]" + + Info + + + R2C19:R99C22 + List + + "N/A" + + + + R2C8:R99C9 + List + + "Bindings!A2..A30" + + + + R3C6:R99C7 + List + + "Y,N" + + + R3C5:R99C5 + List + + "*,Reference(A|B),boolean,string,code,id,oid,uuid,integer,decimal,date,dateTime,time,instant,uri,base64Binary,CodeableConcept,Coding,Identifier,Period,Timing,Range,Quantity,Age,Distance,Duration,Count,Money,Ratio,HumanName,Address,ContactPoint,SampledData" + + + + R2C3:R99C3 + List + + "0..1,1..1,0..*,1..*" + + - R2C14:R100C14 + R10C14:R22C14,R25C14:R99C14 - (R[1048574]C1="")<>(R[1048574]C[16358]="") + (R[-2]C1="")<>(R[-2]C[16358]="") - R2C1:R100C25 + R10C1:R22C25,R25C1:R99C25 - R[1048574]C3="0..0" + R[-2]C3="0..0" - AND(R[1048574]C<>"",R[1048574]C1="") + AND(R[-2]C<>"",R[-2]C1="") - R2C1:R100C1 + R10C1:R22C1,R26C1:R99C1 - AND(R[1048574]C<>"",R[1048573]C="") + AND(R[-2]C<>"",R[-3]C="") + + + + + R10C15:R22C15,R25C15:R99C15,R3C3:R22C3,R25C3:R99C3 + + (R[-2]C1="")<>(R[-2]C[16380]="") + + + + + R10C13:R22C13,R25C13:R99C13,R10C10:R22C10,R25C10:R99C10 + + AND(SEARCH("|",R[-2]C5)<>0,R[-2]C[16366]<>"") + + + + + R10C13:R22C13,R25C13:R99C13,R10C11:R22C11,R25C11:R99C11 + + AND(R[-2]C[16364]<>"",NOT(EXACT(LEFT(R[-2]C5,1),LOWER(LEFT(R[-2]C5,1))))) + + + + + R10C11:R22C12,R25C11:R99C12 + + AND(R[-2]C11<>"",R[-2]C12<>"") + + + + + R10C14:R22C15,R25C14:R99C15 + + AND(R[-2]C14<>"",R[-2]C14=R[-2]C15) + + + + + R10C19:R22C20,R27C19:R99C20 + + AND(R[-4]C1<>"",ISERR(SEARCH("N/A",R2C[16348])),R[-4]C[16348]="") + + + + + R10C23:R22C23,R25C23:R99C23 + + AND(R[-2]C[16340]<>"",LEFT(R[-2]C5,1)<>"@",LEFT(R[-1]C1,LEN(R[-2]C1)+1)<>(R[-2]C1&"."),LEFT(R[-1]C1,LEN(R[-2]C1)+2)<>("!"&R[-2]C1&".")) + + + + + R10C1:R22C25,R25C1:R99C25 + + LEFT(R[-2]C1,1)="!" + + + + + R2C14:R9C14 + + (#REF!="")<>(#REF!="") + + + + + R2C1:R9C25 + + #REF!="0..0" + + + + AND(#REF!<>"",#REF!="") R2C24,R2C3:R2C4,R2C6:R2C13 - R[1048574]C[16380]<>"" + #REF!<>"" - R3C3:R100C3,R2C15:R100C15 + R2C15:R9C15 - (R[1048574]C1="")<>(R[1048574]C[16380]="") + (#REF!="")<>(#REF!="") - R2C10:R100C10,R2C13:R100C13 + R2C10:R9C10,R2C13:R9C13 - AND(SEARCH("|",R[1048574]C5)<>0,R[1048574]C[16366]<>"") + AND(SEARCH("|",#REF!)<>0,#REF!<>"") - R2C11:R100C11,R2C13:R100C13 + R2C11:R9C11,R2C13:R9C13 - AND(R[1048574]C[16364]<>"",NOT(EXACT(LEFT(R[1048574]C5,1),LOWER(LEFT(R[1048574]C5,1))))) + AND(#REF!<>"",NOT(EXACT(LEFT(#REF!,1),LOWER(LEFT(#REF!,1))))) - R2C11:R100C12 + R2C11:R9C12 - AND(R[1048574]C11<>"",R[1048574]C12<>"") + AND(#REF!<>"",#REF!<>"") - R2C14:R100C15 + R2C14:R9C15 - AND(R[1048574]C14<>"",R[1048574]C14=R[1048574]C15) + AND(#REF!<>"",#REF!=#REF!) R2C19:R2C20 - R[1048574]C[16348]="" + #REF!="" - R3C19:R100C20 + R3C19:R9C20,R23C19:R25C20 - AND(R[1048572]C1<>"",ISERR(SEARCH("N/A",R2C[16348])),R[1048572]C[16348]="") + AND(R[1048573]C1<>"",ISERR(SEARCH("N/A",R2C[16348])),R[1048573]C[16348]="") - R2C23:R100C23 + R2C23:R9C23 - AND(R[1048574]C[16340]<>"",LEFT(R[1048574]C5,1)<>"@",LEFT(R[-1]C1,LEN(R[1048574]C1)+1)<>(R[1048574]C1&"."),LEFT(R[-1]C1,LEN(R[1048574]C1)+2)<>("!"&R[1048574]C1&".")) + AND(#REF!<>"",LEFT(#REF!,1)<>"@",LEFT(R[-1]C1,LEN(#REF!)+1)<>(#REF!&"."),LEFT(R[-1]C1,LEN(#REF!)+2)<>("!"&#REF!&".")) - R2C1:R100C25 + R2C1:R9C25 - LEFT(R[1048574]C1,1)="!" + LEFT(#REF!,1)="!" + + R23C14 + + (R[-1]C1="")<>(R[-1]C[16358]="") + + + + + R24C14 + + (#REF!="")<>(#REF!="") + + + + + R23C1:R23C25 + + R[-1]C3="0..0" + + + + AND(R[-1]C<>"",R[-1]C1="") + + + + + R24C1:R24C25 + + #REF!="0..0" + + + + AND(#REF!<>"",#REF!="") + + + + + R23C1 + + AND(R[-1]C<>"",R[-2]C="") + + + + + R25C1 + + AND(R[-2]C<>"",#REF!="") + + + + + R24C1 + + AND(#REF!<>"",R[-2]C="") + + + + + R23C15,R23C3 + + (R[-1]C1="")<>(R[-1]C[16380]="") + + + + + R24C15,R24C3 + + (#REF!="")<>(#REF!="") + + + + + R23C13,R23C10 + + AND(SEARCH("|",R[-1]C5)<>0,R[-1]C[16366]<>"") + + + + + R24C13,R24C10 + + AND(SEARCH("|",#REF!)<>0,#REF!<>"") + + + + + R23C13,R23C11 + + AND(R[-1]C[16364]<>"",NOT(EXACT(LEFT(R[-1]C5,1),LOWER(LEFT(R[-1]C5,1))))) + + + + + R24C13,R24C11 + + AND(#REF!<>"",NOT(EXACT(LEFT(#REF!,1),LOWER(LEFT(#REF!,1))))) + + + + + R23C11:R23C12 + + AND(R[-1]C11<>"",R[-1]C12<>"") + + + + + R24C11:R24C12 + + AND(#REF!<>"",#REF!<>"") + + + + + R23C14:R23C15 + + AND(R[-1]C14<>"",R[-1]C14=R[-1]C15) + + + + + R24C14:R24C15 + + AND(#REF!<>"",#REF!=#REF!) + + + + + R26C19:R26C20 + + AND(#REF!<>"",ISERR(SEARCH("N/A",R2C[16348])),#REF!="") + + + + + R23C23 + + AND(R[-1]C[16340]<>"",LEFT(R[-1]C5,1)<>"@",LEFT(#REF!,LEN(R[-1]C1)+1)<>(R[-1]C1&"."),LEFT(#REF!,LEN(R[-1]C1)+2)<>("!"&R[-1]C1&".")) + + + + + R24C23 + + AND(#REF!<>"",LEFT(#REF!,1)<>"@",LEFT(R[-1]C1,LEN(#REF!)+1)<>(#REF!&"."),LEFT(R[-1]C1,LEN(#REF!)+2)<>("!"&#REF!&".")) + + + + + R23C1:R23C25 + + LEFT(R[-1]C1,1)="!" + + + + + R24C1:R24C25 + + LEFT(#REF!,1)="!" + + + + + R2C1:R9C1 + + AND(#REF!<>"",R[1048573]C="") + + + -
@@ -4134,16 +4345,6 @@ exists(f:code) or exists(f:detail) - - 3 - Location - - Condition.location - location SHALL have code or details - - exists(f:code) or exists(f:detail) - 4 @@ -4593,7 +4794,9 @@ 0 + 3 0 + R4 False @@ -4601,43 +4804,134 @@ 0 - R2C4:R50C4 - List - 'Data Elements'!R2C1:R100C1 - - - R2C3:R50C3 + R2C3:R49C3 List "error,warning" + + R2C4:R49C4 + List + 'Data Elements'!R2C1:R99C1 + - R2C1:R50C7 + R6C1:R49C7 - AND(R[1048574]C1="",R[1048574]C<>"") + AND(R[-2]C1="",R[-2]C<>"") - R2C1:R50C1 + R7C1:R49C1 - AND(R[1048574]C<>"",R[1048573]C="") + AND(R[-2]C<>"",R[-3]C="") - R2C2:R50C2,R2C4:R50C5,R2C7:R50C7 + R6C2:R49C2,R6C4:R49C5,R6C7:R49C7 - (R[1048574]C1<>"")<>(R[1048574]C[16382]<>"") + (R[-2]C1<>"")<>(R[-2]C[16382]<>"") - R2C1:R50C7 + R6C1:R49C7 - LEFT(R[1048574]C1,1)="!" + LEFT(R[-2]C1,1)="!" + + + + + R2C1:R3C7 + + AND(R[1048573]C1="",R[1048573]C<>"") + + + + + R4C1:R4C7 + + AND(R[-1]C1="",R[-1]C<>"") + + + + + R5C1:R5C7 + + AND(#REF!="",#REF!<>"") + + + + + R2C1:R3C1 + + AND(R[1048573]C<>"",R[1048572]C="") + + + + + R4C1 + + AND(R[-1]C<>"",R[-2]C="") + + + + + R6C1 + + AND(R[-2]C<>"",#REF!="") + + + + + R5C1 + + AND(#REF!<>"",R[-2]C="") + + + + + R2C2:R3C2,R2C4:R3C5,R2C7:R3C7 + + (R[1048573]C1<>"")<>(R[1048573]C[16382]<>"") + + + + + R4C2,R4C4:R4C5,R4C7 + + (R[-1]C1<>"")<>(R[-1]C[16382]<>"") + + + + + R5C2,R5C4:R5C5,R5C7 + + (#REF!<>"")<>(#REF!<>"") + + + + + R2C1:R3C7 + + LEFT(R[1048573]C1,1)="!" + + + + + R4C1:R4C7 + + LEFT(R[-1]C1,1)="!" + + + + + R5C1:R5C7 + + LEFT(#REF!,1)="!" @@ -4750,7 +5044,7 @@ location token - Condition.location.code + Condition.location.site[x] @@ -4919,7 +5213,8 @@ 0 - 7 + 11 + 3 False @@ -7097,7 +7392,7 @@ - + Binding Name Unique name across all resources - + ConditionClinicalStatus The clinical status of the Condition or diagnosis code list @@ -7226,9 +7521,12 @@ - - - + + ManifestationOrSymptom + Codes that describe the manifestation or symptoms of a condition. + value set + y + valueset-manifestation-or-symptom @@ -7236,6 +7534,33 @@ + + + + ConditionCause + Codes that describe causes of patient conditions. E.g. Surgical mishap, escalation of a previous condition, etc. + value set + y + valueset-condition-cause + + + + + + + + + + + ConditionPredecessor + Codes that describe activities or observations that occurred prior to the condition + value set + y + valueset-condition-predecessor + + + + @@ -7541,37 +7866,7 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -7586,7 +7881,7 @@ - +
@@ -7619,8 +7914,8 @@ 0 - 4 - 0 + 8 + 4 False @@ -7790,10 +8085,21 @@ - unknown + entered-in-error 5 + Entered In Error + The statement was entered in error and Is not valid + + ActStatus.nullified + + + + unknown + 6 + + The condition status is unknown. Note that "unknown" is a value of last resort and every attempt should be made to provide a meaningful value other than "unknown" @@ -8262,17 +8568,6 @@ - - - - - - - - - - - @@ -8298,7 +8593,6 @@ 600 600 - 1 @@ -8318,8 +8612,8 @@ 0 - 3 - 3 + 5 + 0 False @@ -8329,47 +8623,194 @@ - R2C1:R50C9 + R10C1:R50C9 - AND(R[1048574]C1="",R[1048574]C<>"") + AND(R[-2]C1="",R[-2]C<>"") - R2C1:R50C1 + R11C1:R50C1 - AND(R[1048574]C<>"",R[1048573]C="") + AND(R[-2]C<>"",R[-3]C="") - R2C2:R50C3 + R10C2:R50C3 - AND(R[1048574]C1<>"",(R[1048574]C2="")=(R[1048574]C3="")) + AND(R[-2]C1<>"",(R[-2]C2="")=(R[-2]C3="")) - R2C5:R50C6 + R10C5:R50C6 - AND(R[1048574]C1<>"",R[1048574]C3="",R[1048574]C[16376]="") + AND(R[-2]C1<>"",R[-2]C3="",R[-2]C[16376]="") - R2C6:R50C6 + R10C6:R50C6 - AND(R[1048574]C1<>"",,R[1048574]C3="",R[1048574]C5="",R[1048574]C[16374]="") + AND(R[-2]C1<>"",,R[-2]C3="",R[-2]C5="",R[-2]C[16374]="") - R2C1:R50C9 + R10C1:R50C9 - LEFT(R[1048574]C1,1)="!" + LEFT(R[-2]C1,1)="!" + + R2C1:R5C9 + + AND(#REF!="",#REF!<>"") + + + + + R7C1:R7C9,R9C1:R9C9 + + AND(R[-3]C1="",R[-3]C<>"") + + + + + R2C1:R5C1 + + AND(#REF!<>"",R[1048574]C="") + + + + + R7C1 + + AND(R[-3]C<>"",R[-4]C="") + + + + + R8C1 + + AND(R[-1]C<>"",R[-3]C="") + + + + + R2C2:R5C3 + + AND(#REF!<>"",(#REF!="")=(#REF!="")) + + + + + R7C2:R7C3,R9C2:R9C3 + + AND(R[-3]C1<>"",(R[-3]C2="")=(R[-3]C3="")) + + + + + R2C5:R5C6 + + AND(#REF!<>"",#REF!="",#REF!="") + + + + + R7C5:R7C6,R9C5:R9C6 + + AND(R[-3]C1<>"",R[-3]C3="",R[-3]C[16376]="") + + + + + R2C6:R5C6 + + AND(#REF!<>"",,#REF!="",#REF!="",#REF!="") + + + + + R7C6,R9C6 + + AND(R[-3]C1<>"",,R[-3]C3="",R[-3]C5="",R[-3]C[16374]="") + + + + + R2C1:R5C9 + + LEFT(#REF!,1)="!" + + + + + R7C1:R7C9,R9C1:R9C9 + + LEFT(R[-3]C1,1)="!" + + + + + R9C1 + + AND(R[-3]C<>"",R[-2]C="") + + + + + R6C1:R6C9,R8C1:R8C9 + + AND(R[-1]C1="",R[-1]C<>"") + + + + + R6C1 + + AND(R[-1]C<>"",R[-2]C="") + + + + + R6C2:R6C3,R8C2:R8C3 + + AND(R[-1]C1<>"",(R[-1]C2="")=(R[-1]C3="")) + + + + + R6C5:R6C6,R8C5:R8C6 + + AND(R[-1]C1<>"",R[-1]C3="",R[-1]C[16376]="") + + + + + R6C6,R8C6 + + AND(R[-1]C1<>"",,R[-1]C3="",R[-1]C5="",R[-1]C[16374]="") + + + + + R6C1:R6C9,R8C1:R8C9 + + LEFT(R[-1]C1,1)="!" + + + + + R10C1 + + AND(R[-2]C<>"",R[-4]C="") + + +
diff --git a/hapi-tinder-plugin/src/main/resources/res/dstu2/conformance-spreadsheet.xml b/hapi-tinder-plugin/src/main/resources/res/dstu2/conformance-spreadsheet.xml index 3b71371884b..414c380b864 100644 --- a/hapi-tinder-plugin/src/main/resources/res/dstu2/conformance-spreadsheet.xml +++ b/hapi-tinder-plugin/src/main/resources/res/dstu2/conformance-spreadsheet.xml @@ -24,7 +24,7 @@ 21600 0 0 - 1 + 7 False False @@ -3073,7 +3073,7 @@ 0..1 - integerunsignedInt @@ -4260,11 +4260,10 @@ 600 600 - 1 - 25 + 65 1 1 0 @@ -4281,8 +4280,8 @@ 0 - 30 - 16 + 67 + 4 False @@ -6965,19 +6964,19 @@ n - DAF Query Responder + DAF Responder - DAF Query Responder - daf-queryresponder + DAF Responder + daf-responder conformance-daf-query-responder.xml n - DAF Query Requestor + DAF Requestor - DAF Query Requestor - daf-queryrequestor + DAF Requestor + daf-requestor conformance-daf-query-requestor.xml n @@ -7234,10 +7233,11 @@ + 1 - 1 + 6 1 1 0 @@ -7250,11 +7250,12 @@ 2 + 1 0 - 6 - 2 + 13 + 3 False diff --git a/hapi-tinder-plugin/src/main/resources/res/dstu2/contract-spreadsheet.xml b/hapi-tinder-plugin/src/main/resources/res/dstu2/contract-spreadsheet.xml index bb142396e81..d9602b23955 100644 --- a/hapi-tinder-plugin/src/main/resources/res/dstu2/contract-spreadsheet.xml +++ b/hapi-tinder-plugin/src/main/resources/res/dstu2/contract-spreadsheet.xml @@ -9,8 +9,8 @@ Grahame Paul 2012-03-19T11:12:07Z - 2015-03-07T20:07:08Z - 14.00 + 2015-03-30T16:27:28Z + 15.00 @@ -25,12 +25,11 @@ Invariants 10155 - 24345 + 22365 0 0 - 3 - 1 - + 9 + 2 False False @@ -634,285 +633,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -4681,7 +4690,7 @@ 1 - 4 + 52 1 1 0 @@ -4698,7 +4707,7 @@ 0 - 26 + 53 0 @@ -5906,14 +5915,14 @@ actor reference - Contract.actor.entity + Contract.actor.entity signer reference - Contract.signer.party + Contract.signer.party @@ -6057,11 +6066,11 @@ - - - + + + @@ -6078,7 +6087,6 @@ 600 600 - 1 @@ -6163,7 +6171,7 @@
- R2C1:R4C5,R7C1:R27C5,R5C1:R6C3,R5C5:R6C5 + R2C1:R27C5 LEFT(RC1,1)="!" @@ -6183,13 +6191,6 @@ - - R5C4 - - LEFT(RC1,1)="!" - - - R5C4 @@ -6215,13 +6216,6 @@ - - R6C4 - - LEFT(RC1,1)="!" - - - R6C4 @@ -6245,39 +6239,39 @@ - NameName The name of the operation or parameter (parameters prefixed by operation name + ".") - UseUse "System | Resource | Instance" (operation) "In" or "Out" (parameter) - MinMin Minimum cardinality for a parameter (must be a non-negative integer) - MaxMax maximum cardinality for a parameter - must be "*" or a positive integer - TypeType query/operation for operation; data type for a parameter - ProfileProfile Profile that must apply to parameter's type - TitleTitle The descriptive label for the operation - DocumentationDocumentation Explanation of the operation or parameter - FooterFooter Additional usage notes for an operation @@ -6285,541 +6279,541 @@ - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - - + + + + + + + @@ -7205,15 +7199,15 @@ - + - - - - - - - + + + + + + + @@ -7550,10 +7544,10 @@ - - - + + + @@ -7633,14 +7627,14 @@ ss:Hidden="1"/> - - - - - - + + + + + + Name Default = XML. Leave at default unless told otherwise - DescriptionDescription Description of content/purposes of example @@ -7672,7 +7666,7 @@ ss:Name="_FilterDatabase"/> - General-ContractGeneral-Contract General Contract Example contract-example.xml - - y + y - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - - - - - - + + + + + +
@@ -8141,7 +8135,7 @@ Committee Notes Vocab - Example + Example
!consentdirective @@ -8208,12 +8202,12 @@ - - + @@ -8235,9 +8229,7 @@ ss:Author=""> How is the set of codes defined? - Example Y = example, blank = incomplete. Only relevant if binding is "value set" Conformance Reference - ContractType + ContractType List of overall contract codes value set - Y + example valueset-contract-type @@ -8292,10 +8284,10 @@ - ContractSubtype + ContractSubtype Detailed codes within the above value set - Y + example valueset-contract-subtype @@ -8307,10 +8299,10 @@ - ContractTermType + ContractTermType Detailed codes for the types of contract provisions value set - Y + example valueset-contract-term-type @@ -8322,10 +8314,10 @@ - ContractTermSubType + ContractTermSubType Detailed codes for the subtypes of contract provisions value set - Y + example valueset-contract-term-subtype @@ -8337,10 +8329,10 @@ - ContractSignerType + ContractSignerType List of parties who may be signing value set - Y + preferred valueset-contract-signer-type @@ -8355,7 +8347,7 @@ ContractAction Detailed codes for the contract action value set - Y + example valueset-contract-action @@ -8370,8 +8362,9 @@ ContractActionReason Detailed codes for the contract action reason value set - Y - valueset-contract-actionreason + example + http://hl7.org/fhir/v3/vs/PurposeOfUse @@ -8380,12 +8373,13 @@ + valueset-contract-actionreason ContractActorRole Detailed codes for the contract actor role value set - Y + example valueset-contract-actorrole @@ -8397,11 +8391,10 @@ - + - - + @@ -8412,11 +8405,10 @@ - + - - + @@ -8427,11 +8419,10 @@ - + - - + @@ -8442,11 +8433,10 @@ - + - - + @@ -8457,11 +8447,10 @@ - + - - + @@ -8472,11 +8461,10 @@ - + - - + @@ -8487,11 +8475,10 @@ - + - - + @@ -8502,11 +8489,10 @@ - + - - + @@ -8517,11 +8503,10 @@ - + - - + @@ -8532,11 +8517,10 @@ - + - - + @@ -8547,11 +8531,10 @@ - + - - + @@ -8562,11 +8545,10 @@ - + - - + @@ -8577,11 +8559,10 @@ - + - - + @@ -8592,11 +8573,10 @@ - + - - + @@ -8607,11 +8587,10 @@ - + - - + @@ -8622,11 +8601,10 @@ - + - - + @@ -8637,11 +8615,10 @@ - + - - + @@ -8652,11 +8629,10 @@ - + - - + @@ -8667,11 +8643,10 @@ - + - - + @@ -8682,11 +8657,10 @@ - + - - + @@ -8697,19 +8671,18 @@ - - - - - - - - - - - - + + + + + + + + + + +
@@ -8725,6 +8698,7 @@ 600 600 + 1 @@ -8745,7 +8719,7 @@ 0 11 - 0 + 4 False @@ -8757,12 +8731,6 @@ "code list,value set,reference,special,unbound" - - R2C4:R30C4 - List - - "Y" - R7C1:R9C1 List @@ -8774,7 +8742,7 @@ xmlns="urn:schemas-microsoft-com:office:excel"> - R2C1:R6C13,R10C1:R30C13,R7C2:R9C13 + R2C1:R6C3,R10C1:R30C3,R7C2:R9C3,R2C5:R30C13 AND(RC1="",RC<>"") @@ -8816,7 +8784,7 @@ - R2C1:R30C13 + R2C1:R30C3,R2C5:R30C13 LEFT(RC1,1)="!" @@ -8829,6 +8797,27 @@ + + R8C15 + + AND(RC1="",RC<>"") + + + + + R8C15 + + AND(RC1<>"",(RC3="unbound")<>(RC="")) + + + + + R8C15 + + LEFT(RC1,1)="!" + + +
@@ -8836,14 +8825,14 @@ ss:Hidden="1"/> - - - - - - - + x:FullRows="1" ss:StyleID="s153" ss:DefaultRowHeight="15"> + + + + + + + Code - - + + - - - - - - - - - - - - - - - - + + + + + - - + + - - - - - - + + + + + + - - + + - - - - - - + + + + + + - - + + - - - - - - + + + + + + - - + + - - - - - - + + + + + + - - + + - - - - - - + + + + + + - - + + - - - - - - + + + + + + - - + + - - - - - - + + + + + + - - + + - - - - - - + + + + + + - - + + - - - - - - + + + + + + - - + + - - - - - - + + + + + + - - + + - - - - - - + + + + + + - - + + - - - - - - + + + + + + - - + + - - - - - - + + + + + + - - + + - - - - - - + + + + + + - - + + - - - - - - + + + + + + - - + + - - - - - - + + + + + + - - + + - - - - - - + + + + + + - - + + - - - - - - + + + + + + - - + + - - - - - - + + + + + + - - + + - - - - - - + + + + + + - - + + - - - - - - + + + + + + - - + + - - - - - - + + + + + + - - + + - - - - - - + + + + + + - - + + - - - - - - + + + + + + - - + + - - - - - - + + + + + + - - + + - - - - - - + + + + + + - - + + - - - - - - + + + + + + - - + + - - - - - - + + + + + + - - + + - - - - - - + + + + + + - - + + - - - - - - + + + + + + - - + + - - - - - - + + + + + + - - + + - - - - - - + + + + + + - - + + - - - - - - + + + + + + - - + + - - - - - - + + + + + + - - + + - - - - - - + + + + + + - - + + - - - - - - + + + + + + - - + + - - - - - - + + + + + + - - + + - - - - - - + + + + + + - - + + - - - - - - + + + + + + - - + + - - - - - - + + + + + + - - + + - - - - - - + + + + + + - - + + - - - - - - + + + + + + - - + + - - - - - - + + + + + + - - + + - - - - - - + + + + + + - - + + - - - - - - + + + + + + - - + + - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - + + + + + + + +
diff --git a/hapi-tinder-plugin/src/main/resources/res/dstu2/coverage-spreadsheet.xml b/hapi-tinder-plugin/src/main/resources/res/dstu2/coverage-spreadsheet.xml index 428e35e2ba7..1fdd42f2203 100644 --- a/hapi-tinder-plugin/src/main/resources/res/dstu2/coverage-spreadsheet.xml +++ b/hapi-tinder-plugin/src/main/resources/res/dstu2/coverage-spreadsheet.xml @@ -10,7 +10,7 @@ Paul 2012-03-19T11:12:07Z 2015-03-20T22:47:32Z - 15.00 + 14.00 @@ -20,7 +20,8 @@ 23100 0 0 - 3 + 1 + False False @@ -1327,7 +1328,7 @@ 0..1 - integerpositiveInt Y0..1 - integerpositiveInt Y600 600 + 1 - 13 + 12 1 2 0 @@ -3864,8 +3866,7 @@ 0 - 4 - 13 + 4 False @@ -4848,7 +4849,6 @@ - 1 diff --git a/hapi-tinder-plugin/src/main/resources/res/dstu2/device-spreadsheet.xml b/hapi-tinder-plugin/src/main/resources/res/dstu2/device-spreadsheet.xml index 8d956df5312..31c348d2c89 100644 --- a/hapi-tinder-plugin/src/main/resources/res/dstu2/device-spreadsheet.xml +++ b/hapi-tinder-plugin/src/main/resources/res/dstu2/device-spreadsheet.xml @@ -9,20 +9,87 @@ Grahame Eric Haas 2012-03-19T11:12:07Z - 2015-02-17T19:53:25Z - 14.00 + 2015-03-25T06:39:36Z + 12.00 - 7080 - 18795 - 0 - 0 - 7 + + \\ERICHPLAPTOP\Users\HL7\FHIR\20141020Build\source\observation\observation-spreadsheet.xml + Instructions + Data Elements + Invariants + Search + Operations + Events + Profiles + Examples + Bindings + observation-reliability + observation-status + observation-relationshiptypes + some-code-list + + 0 + 0 + + + 0 + 1 + + + 0 + 2 + + + 0 + 3 + + + 0 + 4 + + + 0 + 5 + + + 0 + 6 + + + 0 + 7 + + + 0 + 8 + + + 0 + 9 + + + 0 + 10 + + + 0 + 11 + + + 0 + 12 + + + 3990 + 25260 + -15 + -15 + 1 1 - False False @@ -798,6 +865,32 @@ + + + @@ -838,11 +931,11 @@ + ss:RefersTo="='Data Elements'!R1C1:R102C24" ss:Hidden="1"/> - + ss:DefaultRowHeight="31.5"> @@ -864,7 +957,7 @@ - + Element Format is ResourceName.componentName.componentName Not published - + Device @@ -993,7 +1086,7 @@ - + Device.identifier @@ -1011,12 +1104,12 @@ - Instance id from manufacturer, owner, regulatory agencies and othersInstance id from manufacturer, owner, and others - Unique instance identifiers assigned to a device by organizations like manufacturers, owners or regulatory agencies. If the identifier identifies the type of device, Device.type should be used. An example is the FDA Mandated Unique Device Identifier (UDI) which identifies an instance of a device uniquely if the serial number is present, . - see http://www.fda.gov/MedicalDevices/DeviceRegulationandGuidance/UniqueDeviceIdentification/default.htmUnique instance identifiers assigned to a device by organizations like manufacturers or owners . If the identifier identifies the type of device, Device.type should be used. - Often fixed to the device as a barcode and may include names given to the device in local usage. Note that some of the barcodes affixed to the device identify its type, not its instance. Often fixed to the device as a barcode and may include names given to the device in local usage. Note that some of the barcodes affixed to the device identify its type, not its instance. For the FDA Mandated Unique Device Identifier (UDI) use the Device.udi element. .id - + Device.type @@ -1048,10 +1141,11 @@ What kind of device this is - Code or identifier to identify a kind of device An example is the FDA Mandated Unique Device Identifier (UDI) which identifies a type of a device when the serial number is absent, otherwise it uniquely identifies the device instance and Device.identifier should be used instead of Device.type. - see http://www.fda.gov/MedicalDevices/DeviceRegulationandGuidance/UniqueDeviceIdentification/default.htmCode or identifier to identify a kind of device. - + For the FDA Mandated Unique Device Identifier (UDI) use the Device.udi element. .code @@ -1061,7 +1155,43 @@ - + + Device.status + + 0..1 + + code + Y + Y + DeviceStatus + status + + + + + available | not-available | entered-in-error + Status of the Device availability. + + + + .statusCode + + + + + + + Device.manufacturer @@ -1093,7 +1223,7 @@ - + Device.model @@ -1126,7 +1256,7 @@ - + Device.version @@ -1158,7 +1288,7 @@ - + Device.manufactureDate @@ -1182,14 +1312,13 @@ - - + - + Device.expiry @@ -1222,8 +1351,8 @@ - - !Device.udi + Device.udi 0..1 FDA Mandated Unique Device Identifier - FDA Mandated Unique Device Identifier. Use the human readable information (the content that the user sees, which is sometimes different to the exact syntax represented in the barcode) - see http://www.fda.gov/MedicalDevices/DeviceRegulationandGuidance/UniqueDeviceIdentification/default.htmUnited States Food and Drug Administration mandated Unique Device Identifier (UDI). Use the human readable information (the content that the user sees, which is sometimes different to the exact syntax represented in the barcode) - see http://www.fda.gov/MedicalDevices/DeviceRegulationandGuidance/UniqueDeviceIdentification/default.htm The unique identifier may identify an instance of a device uniquely, or it may just identify the type of the device. A portion of the UDI - the DI part - can be extracted from the UDI when required, and used to look up information about the device through the GUDID. - + Device.lotNumber @@ -1289,8 +1418,8 @@ - - !Device.serialNumber + !Device.serialNumber 0..1 - + Device.owner @@ -1354,7 +1483,7 @@ - + Device.location @@ -1387,7 +1516,7 @@ - + Device.patient @@ -1420,7 +1549,7 @@ - + Device.contact @@ -1453,7 +1582,7 @@ - + Device.url @@ -3683,12 +3812,13 @@ 600 600 + 1 1 1 - 1 + 7 0 @@ -3696,14 +3826,15 @@ 1 + 1 2 0 - 3 - 7 + 8 + 13 False @@ -3711,7 +3842,7 @@ 0 - R2C22:R101C22 + R2C22:R102C22 List "left,right,up,down,[xpixels];[ypixels]" @@ -3719,21 +3850,21 @@ Info - R2C19:R101C21 + R2C20:R102C21,R6C19:R8C19,R2C19:R4C19,R10C19:R102C19 List "N/A" - R2C8:R101C9 + R2C8:R102C9 List "Bindings!A2..A30" - R3C6:R101C7 + R3C6:R102C7 List "Y,N" @@ -3745,14 +3876,14 @@ "DomainResource,Type,Resource,Structure" - R3C5:R101C5 + R3C5:R102C5 List "*,Reference(A|B),boolean,string,code,id,oid,uuid,integer,decimal,date,dateTime,time,instant,uri,base64Binary,CodeableConcept,Coding,Identifier,Period,Timing,Range,Quantity,Age,Distance,Duration,Count,Money,Ratio,HumanName,Address,ContactPoint,SampledData" - R2C3:R101C3 + R2C3:R102C3 List "0..1,1..1,0..*,1..*" @@ -3763,118 +3894,9 @@ Invariantids - - - R2C14:R101C14 - - (R[1048574]C1="")<>(R[1048574]C[16358]="") - - - - - R2C1:R101C24 - - R[1048574]C3="0..0" - - - - AND(R[1048574]C<>"",R[1048574]C1="") - - - - - R2C1:R8C1,R10C1:R101C1 - - AND(R[1048574]C<>"",R[1048573]C="") - - - - - R2C23,R2C3:R2C4,R2C6:R2C13 - - R[1048574]C[16380]<>"" - - - - - R3C3:R101C3,R2C15:R101C15 - - (R[1048574]C1="")<>(R[1048574]C[16380]="") - - - - - R2C10:R101C10,R2C13:R101C13 - - AND(SEARCH("|",R[1048574]C5)<>0,R[1048574]C[16366]<>"") - - - - - R2C11:R101C11,R2C13:R101C13 - - AND(R[1048574]C[16364]<>"",NOT(EXACT(LEFT(R[1048574]C5,1),LOWER(LEFT(R[1048574]C5,1))))) - - - - - R2C11:R101C12 - - AND(R[1048574]C11<>"",R[1048574]C12<>"") - - - - - R2C14:R101C15 - - AND(R[1048574]C14<>"",R[1048574]C14=R[1048574]C15) - - - - - R2C19:R2C20 - - R[1048574]C[16348]="" - - - - - R3C19:R101C20 - - AND(R[1048572]C1<>"",ISERR(SEARCH("N/A",R2C[16348])),R[1048572]C[16348]="") - - - - - R2C22:R6C22,R9C22:R101C22 - - AND(R[1048574]C[16342]<>"",LEFT(R[1048574]C5,1)<>"@",LEFT(R[-1]C1,LEN(R[1048574]C1)+1)<>(R[1048574]C1&"."),LEFT(R[-1]C1,LEN(R[1048574]C1)+2)<>("!"&R[1048574]C1&".")) - - - - - R2C1:R101C24 - - LEFT(R[1048574]C1,1)="!" - - - - - R9C1 - - AND(R[1048560]C<>"",R[1048558]C="") - - - - - R7C22:R8C22 - - AND(R[1048564]C[16342]<>"",LEFT(R[1048564]C5,1)<>"@",LEFT(R[1048566]C1,LEN(R[1048564]C1)+1)<>(R[1048564]C1&"."),LEFT(R[1048566]C1,LEN(R[1048564]C1)+2)<>("!"&R[1048564]C1&".")) - - - @@ -4405,7 +4427,7 @@ R2C4:R50C4 List - 'Data Elements'!R2C1:R101C1 + 'Data Elements'!R2C1:R102C1 R2C3:R50C3 @@ -4511,7 +4533,7 @@ token Device.identifier - + Instance id from manufacturer, owner, and others location @@ -4528,11 +4550,11 @@ Patient information, if the resource is affixed to a person - !udi + udi string Device.udi - + FDA Mandated Unique Device Identifier @@ -4731,7 +4753,7 @@ - R2C1:R30C5 + R2C1:R30C4,R2C5:R8C5,R10C5:R30C5 AND(R[1048574]C1="",R[1048574]C<>"") @@ -4773,14 +4795,14 @@ - R2C5:R30C5 + R2C5:R8C5,R10C5:R30C5 AND(R[1048574]C1<>"",R[1048574]C[16376]="",R[1048574]C4="") - R2C1:R30C5 + R2C1:R30C4,R2C5:R8C5,R10C5:R30C5 LEFT(R[1048574]C1,1)="!" @@ -6151,8 +6173,7 @@ 0 - 4 - 0 + 7 False @@ -6605,7 +6626,6 @@ - 1 @@ -6625,8 +6645,8 @@ 0 - 5 - 4 + 15 + 2 False @@ -6722,9 +6742,7 @@ ss:Author=""> How is the set of codes defined? - Example Y = example, blank = incomplete. Only relevant if binding is "value set" Conformance Reference DeviceKind Defines the nature of the device and the kind of functionality/services/behavior that may be expected from it reference - y + example https://rtmms.nist.gov/rtmms/index.htm#!rosetta RTM Management Service @@ -6779,11 +6797,11 @@ [#5453]  - - - - - + DeviceStatus + The availability status of the device + code list + required + #devicestatus @@ -7231,6 +7249,7 @@ 0 + 10 False @@ -7244,73 +7263,30 @@ "code list,value set,reference,special,unbound" - R2C4:R30C4 + R4C4:R30C4 List "Y" + + R2C4:R3C4 + List + + "required,extensible,preferred, example" + - - R2C1:R30C12,R3C13:R30C13 - - AND(R[1048574]C1="",R[1048574]C<>"") - - - - - R2C1:R30C1 - - AND(R[1048574]C<>"",R[1048573]C="") - - - - - R2C2:R30C3 - - AND(R[1048574]C1<>"",R[1048574]C[16382]="") - - - - - R2C5:R30C5 - - AND(R[1048574]C1<>"",(R[1048574]C3="unbound")<>(R[1048574]C[16376]="")) - - - - - R2C6:R30C6 - - AND(R[1048574]C1<>"",(R[1048574]C[16374]<>"")<>(R[1048574]C3="reference")) - - - - - R2C7:R30C10 - - AND(R[1048574]C[16372]<>"",R[1048574]C3<>"code list") - - - - - R2C1:R30C12,R3C13:R30C13 - - LEFT(R[1048574]C1,1)="!" - - - - + -
- + @@ -7356,34 +7332,34 @@ ss:Name="_FilterDatabase"/> - - + available + 1 - - + Available + The Device is available for use - - + not-available + 2 - - + Not Available + The Device is no longer available for use ( e.g lost, expired, damaged) - - + entered-in-error + 3 - - + Entered in Error + The Device was entered in error and voided @@ -7927,6 +7903,7 @@ 0 + 3 0 @@ -7936,47 +7913,5 @@ - - R2C1:R50C9 - - AND(R[1048574]C1="",R[1048574]C<>"") - - - - - R2C1:R50C1 - - AND(R[1048574]C<>"",R[1048573]C="") - - - - - R2C2:R50C3 - - AND(R[1048574]C1<>"",(R[1048574]C2="")=(R[1048574]C3="")) - - - - - R2C5:R50C6 - - AND(R[1048574]C1<>"",R[1048574]C3="",R[1048574]C[16376]="") - - - - - R2C6:R50C6 - - AND(R[1048574]C1<>"",,R[1048574]C3="",R[1048574]C5="",R[1048574]C[16374]="") - - - - - R2C1:R50C9 - - LEFT(R[1048574]C1,1)="!" - - - diff --git a/hapi-tinder-plugin/src/main/resources/res/dstu2/documentmanifest-spreadsheet.xml b/hapi-tinder-plugin/src/main/resources/res/dstu2/documentmanifest-spreadsheet.xml index eb168a9daf6..48bbb0e9b4b 100644 --- a/hapi-tinder-plugin/src/main/resources/res/dstu2/documentmanifest-spreadsheet.xml +++ b/hapi-tinder-plugin/src/main/resources/res/dstu2/documentmanifest-spreadsheet.xml @@ -9,7 +9,7 @@ Grahame Moehrke, John (GE Healthcare) 2012-03-19T11:12:07Z - 2015-03-17T01:47:43Z + 2015-03-27T00:44:25Z 14.00 @@ -24,7 +24,7 @@ 20730 0 240 - 3 + 1 False False @@ -837,9 +837,9 @@ + ss:RefersTo="='Data Elements'!R1C1:R101C24" ss:Hidden="1"/> -
@@ -1139,7 +1139,7 @@ ss:Name="_FilterDatabase"/> - DocumentC80TypeDocumentC80Type class @@ -1407,14 +1407,44 @@ - + DocumentManifest.content 1..* - Reference(DocumentReference|Binary|Media) + + + + + + + + + Contents of the manifest + The manifest list + + + + + + + + + + + + DocumentManifest.content.p[x] + + 1..1 + + Attachment|Reference(DocumentReference|Media) @@ -1426,7 +1456,7 @@ Contents of this set of documents - The list of resources that describe the parts of this document reference. Usually, these would be document references, but direct references to binary attachments and images are also allowedThe list of DocumentReference or Media Resources, or Attachment that consist of the parts of this document manifest. Usually, these would be document references, but direct references to Media or Attachments are also allowed @@ -3680,12 +3710,13 @@ 600 600 + 1 - 13 + 1 1 - 1 + 8 0 @@ -3693,48 +3724,20 @@ 1 + 1 2 - 1 0 - 16 - 4 + 6 + 14 False False - - R2C22:R100C22 - List - - "left,right,up,down,[xpixels];[ypixels]" - - Info - - - R2C19:R100C21 - List - - "N/A" - - - - R2C8:R100C9 - List - - "Bindings!A2..A30" - - - - R3C6:R100C7 - List - - "Y,N" - R2C5 List @@ -3742,42 +3745,70 @@ "DomainResource,Type,Resource,Structure" - R3C5:R100C5 - List - - "*,Reference(A|B),boolean,string,code,id,oid,uuid,integer,decimal,date,dateTime,time,instant,uri,base64Binary,CodeableConcept,Coding,Identifier,Period,Timing,Range,Quantity,Age,Distance,Duration,Count,Money,Ratio,HumanName,Address,ContactPoint,SampledData" - - - - R2C4,R4C4:R100C4 + R2C4,R4C4:R101C4 List Invariants!#REF! - - R2C3:R100C3 - List - - "0..1,1..1,0..*,1..*" - R3C4 List Invariantids - + R2C22:R101C22 + List + + "left,right,up,down,[xpixels];[ypixels]" + + Info + + + R2C19:R101C21 + List + + "N/A" + + + + R2C8:R101C9 + List + + "Bindings!A2..A30" + + + + R3C6:R101C7 + List + + "Y,N" + + + R3C5:R101C5 + List + + "*,Reference(A|B),boolean,string,code,id,oid,uuid,integer,decimal,date,dateTime,time,instant,uri,base64Binary,CodeableConcept,Coding,Identifier,Period,Timing,Range,Quantity,Age,Distance,Duration,Count,Money,Ratio,HumanName,Address,ContactPoint,SampledData" + + + + R2C3:R101C3 + List + + "0..1,1..1,0..*,1..*" + + - R2C14:R100C14 + R2C14:R101C14 (RC1="")<>(RC="") - R2C1:R100C24 + R2C1:R101C24 RC3="0..0" @@ -3788,7 +3819,7 @@ - R2C1:R100C1 + R2C1:R15C1,R17C1:R101C1 AND(RC<>"",R[-1]C="") @@ -3802,35 +3833,35 @@ - R3C3:R100C3,R2C15:R100C15 + R3C3:R101C3,R2C15:R101C15 (RC1="")<>(RC="") - R2C10:R100C10,R2C13:R100C13 + R2C10:R101C10,R2C13:R101C13 AND(SEARCH("|",RC5)<>0,RC<>"") - R2C11:R100C11,R2C13:R100C13 + R2C11:R101C11,R2C13:R101C13 AND(RC<>"",NOT(EXACT(LEFT(RC5,1),LOWER(LEFT(RC5,1))))) - R2C11:R100C12 + R2C11:R101C12 AND(RC11<>"",RC12<>"") - R2C14:R100C15 + R2C14:R101C15 AND(RC14<>"",RC14=RC15) @@ -3844,26 +3875,40 @@ - R3C19:R100C20 + R3C19:R101C20 AND(RC1<>"",ISERR(SEARCH("N/A",R2C)),RC="") - R2C22:R100C22 + R2C22:R13C22,R16C22:R101C22 AND(RC<>"",LEFT(RC5,1)<>"@",LEFT(R[1]C1,LEN(RC1)+1)<>(RC1&"."),LEFT(R[1]C1,LEN(RC1)+2)<>("!"&RC1&".")) - R2C1:R100C24 + R2C1:R101C24 LEFT(RC1,1)="!" + + R16C1 + + AND(RC<>"",R[-2]C="") + + + + + R14C22:R15C22 + + AND(RC<>"",LEFT(RC5,1)<>"@",LEFT(R[2]C1,LEN(RC1)+1)<>(RC1&"."),LEFT(R[2]C1,LEN(RC1)+2)<>("!"&RC1&".")) + + + @@ -4389,17 +4434,17 @@ False False - - R2C4:R50C4 - List - 'Data Elements'!R2C1:R100C1 - R2C3:R50C3 List "error,warning" + + R2C4:R50C4 + List + 'Data Elements'!R2C1:R101C1 + @@ -4521,10 +4566,10 @@ - content + contentref reference - DocumentManifest.content + DocumentManifest.content.pReference @@ -4662,7 +4707,6 @@ - 1 @@ -4682,7 +4726,7 @@ 0 - 13 + 9 3 @@ -6642,15 +6686,16 @@ - -
+ @@ -6658,7 +6703,7 @@ - + Binding Name Y = example, blank = incomplete. Only relevant if binding is "value set" + Conformance Reference #tab-name or value set filename(without extension) or URL for reference - + @@ -6741,6 +6788,7 @@ + @@ -6756,6 +6804,7 @@ + @@ -6771,6 +6820,7 @@ + @@ -6786,6 +6836,7 @@ + @@ -6801,6 +6852,7 @@ + @@ -6816,6 +6868,7 @@ + @@ -6831,6 +6884,7 @@ + @@ -6846,6 +6900,7 @@ + @@ -6861,6 +6916,7 @@ + @@ -6876,6 +6932,7 @@ + @@ -6891,6 +6948,7 @@ + @@ -6906,6 +6964,7 @@ + @@ -6921,6 +6980,7 @@ + @@ -6936,6 +6996,7 @@ + @@ -6951,6 +7012,7 @@ + @@ -6966,6 +7028,7 @@ + @@ -6981,6 +7044,7 @@ + @@ -6996,6 +7060,7 @@ + @@ -7011,6 +7076,7 @@ + @@ -7026,6 +7092,7 @@ + @@ -7041,6 +7108,7 @@ + @@ -7056,6 +7124,7 @@ + @@ -7071,6 +7140,7 @@ + @@ -7086,6 +7156,7 @@ + @@ -7101,6 +7172,7 @@ + @@ -7116,6 +7188,7 @@ + @@ -7131,6 +7204,7 @@ + @@ -7146,6 +7220,7 @@ + @@ -7181,7 +7256,8 @@ 0 - 0 + 5 + R2C1:R2C6 False @@ -7194,16 +7270,16 @@ "code list,value set,reference,special,unbound" - R2C4:R30C4 + R2C4:R30C5 List "Y" - - R2C1:R30C13 + R2C1:R30C14 AND(RC1="",RC<>"") @@ -7224,28 +7300,28 @@ - R2C5:R30C5 + R2C6:R30C6 AND(RC1<>"",(RC3="unbound")<>(RC="")) - R2C6:R30C6 + R2C7:R30C7 AND(RC1<>"",(RC<>"")<>(RC3="reference")) - R2C7:R30C10 + R2C8:R30C11 AND(RC<>"",RC3<>"code list") - R2C1:R30C13 + R2C1:R30C14 LEFT(RC1,1)="!" diff --git a/hapi-tinder-plugin/src/main/resources/res/dstu2/documentreference-spreadsheet.xml b/hapi-tinder-plugin/src/main/resources/res/dstu2/documentreference-spreadsheet.xml index 62af03b05a8..b301c9cf105 100644 --- a/hapi-tinder-plugin/src/main/resources/res/dstu2/documentreference-spreadsheet.xml +++ b/hapi-tinder-plugin/src/main/resources/res/dstu2/documentreference-spreadsheet.xml @@ -9,7 +9,7 @@ Grahame Moehrke, John (GE Healthcare) 2012-03-19T11:12:07Z - 2015-03-18T00:37:16Z + 2015-03-27T01:39:44Z 14.00 @@ -24,7 +24,8 @@ 20730 0 240 - 1 + 8 + 1 False False @@ -1100,9 +1101,9 @@ - Precise type of document Kind of document - The type code specifies the precise type of document from the user perspective. It is recommended that the value Set be drawn from a coding scheme providing a fine level of granularity such as LOINC. (e.g. Patient Summary, Discharge Summary, Prescription, etc.)Specifies the particular kind of document. This usually equates to the purpose of making the document. It is recommended that the value Set be drawn from a coding scheme providing a fine level of granularity such as LOINC. (e.g. Patient Summary, Discharge Summary, Prescription, etc.) Key metadata element describing the document, used in searching/filtering. DocumentReference.class - + kind 0..1 @@ -1137,9 +1139,9 @@ - High-level classification of documentCategorization of document - The class code specifying the high-level use classification of the document type (e.g., Report, Summary, Images, Treatment Plan, Patient Preferences, Workflow).A categorization for the type of document. The class is an abstraction from the type specifying the high-level kind of document (e.g., Report, Summary, Images, Treatment Plan, Patient Preferences, Workflow) at a macro level. Helps humans to assess whether the document is of interest when viewing an list of documents - DocumentIHEFormatDocumentFormat @@ -1175,7 +1177,7 @@ Format/content rules for the document - An identifier that identifies the the document encoding, structure and template that the document conforms to beyond the base format indicated in the mimeTypeAn identifier of the document encoding, structure, and template that the document conforms to beyond the base format indicated in the mimeType Helps the processing. Usually is a URN that identifies. For IHE defined Document Content profiles this is a urn issued by IHE.600 600 - 1 - 23 + 10 1 - 1 + 8 0 @@ -3563,6 +3564,7 @@ 1 + 1 2 @@ -3570,8 +3572,8 @@ 0 - 30 - 0 + 14 + 14 False @@ -5715,6 +5717,7 @@ 0 + 13 0 @@ -6699,7 +6702,7 @@ DocumentC80Class - High-level classification of a clinical document + High-level kind of a clinical document at a macro level value set Preferred @@ -6795,12 +6798,12 @@ - DocumentIHEFormat + DocumentFormat Document Format Codes value set Preferred - valueset-ihe-formatcodes + valueset-formatcodes @@ -7143,6 +7146,7 @@ 600 600 + 1 @@ -7162,8 +7166,8 @@ 0 - 10 - 4 + 2 + 0 False @@ -7349,7 +7353,7 @@ - This reference has been superseded by another reference + This reference has been superceded by another reference ~ActStatus.obsolete @@ -7899,7 +7903,8 @@ 0 - 0 + 3 + 5 False diff --git a/hapi-tinder-plugin/src/main/resources/res/dstu2/encounter-spreadsheet.xml b/hapi-tinder-plugin/src/main/resources/res/dstu2/encounter-spreadsheet.xml index ff0de1c493b..aa7b3588521 100644 --- a/hapi-tinder-plugin/src/main/resources/res/dstu2/encounter-spreadsheet.xml +++ b/hapi-tinder-plugin/src/main/resources/res/dstu2/encounter-spreadsheet.xml @@ -20,8 +20,8 @@ Macintosh HD:Users:cnanjo:repository:fhir:trunk:build:source:encounter:Invariants Invariants - 8016 - 17220 + 8832 + 23040 0 0 655 @@ -1164,7 +1164,7 @@ Encounter.class - 1..10..1 code - Quantity of time the encounter lastedQuantity of time the encounter lasted (less time absent) Quantity of time the encounter lasted. This excludes the time during leaves of absence. @@ -1965,7 +1965,7 @@ - Encounter.hospitalization.dietEncounter.hospitalization.dietPreference 0..1 - Dietary restrictions for the patientDiet preferences reported by the patient - Dietary restrictions for the patient - Track patients reported dietary restrictions to help with catering requirements + Used to track patient's diet restrictions and/or preference. For a complete description of the nutrition needs of a patient during their stay, one should use the nutritionOrder resource which links to Encounter @@ -4044,9 +4043,9 @@ 1 - 33 + 28 1 - 17 + 9 0 @@ -4062,8 +4061,8 @@ 0 - 34 - 19 + 31 + 15 False @@ -4132,333 +4131,6 @@ - - R15C14:R107C14 - - (R[-2]C1="")<>(R[-2]C[16358]="") - - - - - R15C1:R107C24 - - R[-2]C3="0..0" - - - - AND(R[-2]C<>"",R[-2]C1="") - - - - - R17C1:R41C1,R43C1:R107C1,R2C1:R5C1,R9C1:R12C1 - - AND(R[1048574]C<>"",R[1048573]C="") - - - - - R3C3:R12C3,R15C3:R107C3,R15C15:R107C15 - - (R[-2]C1="")<>(R[-2]C[16380]="") - - - - - R15C10:R107C10,R15C13:R107C13 - - AND(SEARCH("|",R[-2]C5)<>0,R[-2]C[16366]<>"") - - - - - R15C11:R107C11,R15C13:R107C13 - - AND(R[-2]C[16364]<>"",NOT(EXACT(LEFT(R[-2]C5,1),LOWER(LEFT(R[-2]C5,1))))) - - - - - R15C11:R107C12 - - AND(R[-2]C11<>"",R[-2]C12<>"") - - - - - R15C14:R107C15 - - AND(R[-2]C14<>"",R[-2]C14=R[-2]C15) - - - - - R17C19:R107C20 - - AND(R[-4]C1<>"",ISERR(SEARCH("N/A",R2C[16348])),R[-4]C[16348]="") - - - - - R16C22:R39C22,R42C22:R107C22,R2C22:R3C22,R8C22:R9C22 - - AND(R[1048574]C[16342]<>"",LEFT(R[1048574]C5,1)<>"@",LEFT(R[-1]C1,LEN(R[1048574]C1)+1)<>(R[1048574]C1&"."),LEFT(R[-1]C1,LEN(R[1048574]C1)+2)<>("!"&R[1048574]C1&".")) - - - - - R15C1:R107C24 - - LEFT(R[-2]C1,1)="!" - - - - - R42C1 - - AND(R[-12]C<>"",R[-14]C="") - - - - - R14C22:R15C22,R40C22:R41C22 - - AND(R[1048558]C[16342]<>"",LEFT(R[1048558]C5,1)<>"@",LEFT(R[1048560]C1,LEN(R[1048558]C1)+1)<>(R[1048558]C1&"."),LEFT(R[1048560]C1,LEN(R[1048558]C1)+2)<>("!"&R[1048558]C1&".")) - - - - - R8C1 - - AND(R[1048563]C<>"",R[1048559]C="") - - - - - R6C22 - - AND(R[1048567]C[16342]<>"",LEFT(R[1048567]C5,1)<>"@",LEFT(R[-4]C1,LEN(R[1048567]C1)+1)<>(R[1048567]C1&"."),LEFT(R[-4]C1,LEN(R[1048567]C1)+2)<>("!"&R[1048567]C1&".")) - - - - - R7C22 - - AND(R[1048565]C[16342]<>"",LEFT(R[1048565]C5,1)<>"@",LEFT(R[1048568]C1,LEN(R[1048565]C1)+1)<>(R[1048565]C1&"."),LEFT(R[1048568]C1,LEN(R[1048565]C1)+2)<>("!"&R[1048565]C1&".")) - - - - - R6C1 - - AND(R[1048567]C<>"",#REF!="") - - - - - R2C14:R12C14 - - (#REF!="")<>(#REF!="") - - - - - R13C14:R14C14 - - (R[-3]C1="")<>(R[-3]C[16358]="") - - - - - R2C1:R12C24 - - #REF!="0..0" - - - - AND(#REF!<>"",#REF!="") - - - - - R13C1:R14C24 - - R[-3]C3="0..0" - - - - AND(R[-3]C<>"",R[-3]C1="") - - - - - R14C1 - - AND(R[-3]C<>"",R[-4]C="") - - - - - R15C1 - - AND(R[-2]C<>"",R[-4]C="") - - - - - R2C23,R2C3:R2C4,R2C6:R2C13 - - #REF!<>"" - - - - - R13C3:R14C3,R13C15:R14C15 - - (R[-3]C1="")<>(R[-3]C[16380]="") - - - - - R2C15:R12C15 - - (#REF!="")<>(#REF!="") - - - - - R2C10:R12C10,R2C13:R12C13 - - AND(SEARCH("|",#REF!)<>0,#REF!<>"") - - - - - R13C10:R14C10,R13C13:R14C13 - - AND(SEARCH("|",R[-3]C5)<>0,R[-3]C[16366]<>"") - - - - - R2C11:R12C11,R2C13:R12C13 - - AND(#REF!<>"",NOT(EXACT(LEFT(#REF!,1),LOWER(LEFT(#REF!,1))))) - - - - - R13C11:R14C11,R13C13:R14C13 - - AND(R[-3]C[16364]<>"",NOT(EXACT(LEFT(R[-3]C5,1),LOWER(LEFT(R[-3]C5,1))))) - - - - - R2C11:R12C12 - - AND(#REF!<>"",#REF!<>"") - - - - - R13C11:R14C12 - - AND(R[-3]C11<>"",R[-3]C12<>"") - - - - - R2C14:R12C15 - - AND(#REF!<>"",#REF!=#REF!) - - - - - R13C14:R14C15 - - AND(R[-3]C14<>"",R[-3]C14=R[-3]C15) - - - - - R2C19:R2C20 - - #REF!="" - - - - - R3C19:R12C20 - - AND(R[1048573]C1<>"",ISERR(SEARCH("N/A",R2C[16348])),R[1048573]C[16348]="") - - - - - R13C19:R16C20 - - AND(R[-5]C1<>"",ISERR(SEARCH("N/A",R2C[16348])),R[-5]C[16348]="") - - - - - R13C22 - - AND(R[-3]C[16342]<>"",LEFT(R[-3]C5,1)<>"@",LEFT(R[-2]C1,LEN(R[-3]C1)+1)<>(R[-3]C1&"."),LEFT(R[-2]C1,LEN(R[-3]C1)+2)<>("!"&R[-3]C1&".")) - - - - - R2C1:R12C24 - - LEFT(#REF!,1)="!" - - - - - R13C1:R14C24 - - LEFT(R[-3]C1,1)="!" - - - - - R7C1 - - AND(R[1048565]C<>"",R[1048563]C="") - - - - - R13C1 - - AND(#REF!<>"",R[1048562]C="") - - - - - R16C1 - - AND(R[-13]C<>"",R[-15]C="") - - - - - R10C22:R12C22 - - AND(R[1048559]C[16342]<>"",LEFT(R[1048559]C5,1)<>"@",LEFT(R[1048561]C1,LEN(R[1048559]C1)+1)<>(R[1048559]C1&"."),LEFT(R[1048561]C1,LEN(R[1048559]C1)+2)<>("!"&R[1048559]C1&".")) - - - - - R4C22:R5C22 - - AND(R[1048571]C[16342]<>"",LEFT(R[1048571]C5,1)<>"@",LEFT(R[-2]C1,LEN(R[1048571]C1)+1)<>(R[1048571]C1&"."),LEFT(R[-2]C1,LEN(R[1048571]C1)+2)<>("!"&R[1048571]C1&".")) - - - @@ -7801,7 +7473,7 @@ PatientDiet Medical, cultural or ethical food preferences to help with catering requirements value set - + y valueset-encounter-diet @@ -8175,8 +7847,8 @@ 0 - 12 - 4 + 7 + 3 False diff --git a/hapi-tinder-plugin/src/main/resources/res/dstu2/episodeofcare-spreadsheet.xml b/hapi-tinder-plugin/src/main/resources/res/dstu2/episodeofcare-spreadsheet.xml index 430ef0030f8..699f47aafb4 100644 --- a/hapi-tinder-plugin/src/main/resources/res/dstu2/episodeofcare-spreadsheet.xml +++ b/hapi-tinder-plugin/src/main/resources/res/dstu2/episodeofcare-spreadsheet.xml @@ -9,7 +9,7 @@ Grahame Brian Postlethwaite 2012-03-19T11:12:07Z - 2014-12-08T05:06:37Z + 2015-03-24T03:04:58Z 15.00 @@ -20,11 +20,12 @@ Invariants Invariants - 11660 - 21600 + 8832 + 23040 0 0 1 + 1 False False @@ -832,27 +833,29 @@
- - - - - - + + + + + + - + - - - - + + + + - - + + - + Element - EpisodeOfCare.currentStatusEpisodeOfCare.status 1..1 code - + Y Y EpisodeOfCareStatus - planned | active | onhold | finished | withdrawn | otherplanned | waitlist | active | onhold | finished | cancelled @@ -1093,7 +1097,7 @@ - planned | active | onhold | finished | withdrawn | otherplanned | waitlist | active | onhold | finished | cancelled @@ -1123,7 +1127,7 @@ - The period during this episodeofcare that the specific status appliedThe period during this EpisodeOfCare that the specific status applied @@ -1155,9 +1159,9 @@ - Specific type of EpisodeOfcareSpecific type of EpisodeOfCare - The type can be very important in processing as this could be used in determining if the episodeofcare is relevant to specific government reporting, or other types of classificationsThe type can be very important in processing as this could be used in determining if the EpisodeOfCare is relevant to specific government reporting, or other types of classifications @@ -1188,7 +1192,7 @@ - The patient that this episodeofcare applies toThe patient that this EpisodeOfCare applies to @@ -1230,7 +1234,8 @@ - + This was left as 0..1 to permit small systems having an implied Organization EpisodeOfCare.periodEpisodeOfCare.referralRequest - 0..10..* Reference(ReferralRequest) - A Referral Request that this EpisodeOfCare manages activities withinReferral Request(s) that this EpisodeOfCare manages activities within + Referral Request(s) that are fulfilled by this EpisodeOfCare, incoming referrals - @@ -1392,7 +1398,7 @@ 0..1 - Reference(Practitioner)Reference(Practitioner|Organization) @@ -1403,11 +1409,12 @@ - The practitioner within the teamThe practitioner (or Organization) within the team - + Where an Organization is included in the CareTeam, it is really providing some form of services to the EpisodeOfCare (e.g. Jim's Mowing Services) the details of the services would be included on a CarePlan @@ -3757,7 +3764,7 @@ 1 1 1 - 1 + 12 0 @@ -3765,14 +3772,15 @@ 1 + 1 2 0 - 11 - 8 + 5 + 13 False @@ -3840,136 +3848,6 @@ - - R2C14:R105C14 - - (RC1="")<>(RC="") - - - - - R2C1:R105C24 - - RC3="0..0" - - - - AND(RC<>"",RC1="") - - - - - R2C1:R5C1,R19C1:R105C1,R9C1:R12C1,R14C1:R17C1 - - AND(RC<>"",R[-1]C="") - - - - - R2C23,R2C3:R2C4,R2C6:R2C13 - - RC<>"" - - - - - R3C3:R105C3,R2C15:R105C15 - - (RC1="")<>(RC="") - - - - - R2C10:R105C10,R2C13:R105C13 - - AND(SEARCH("|",RC5)<>0,RC<>"") - - - - - R2C11:R105C11,R2C13:R105C13 - - AND(RC<>"",NOT(EXACT(LEFT(RC5,1),LOWER(LEFT(RC5,1))))) - - - - - R2C11:R105C12 - - AND(RC11<>"",RC12<>"") - - - - - R2C14:R105C15 - - AND(RC14<>"",RC14=RC15) - - - - - R2C19:R2C20 - - RC="" - - - - - R3C19:R105C20 - - AND(RC1<>"",ISERR(SEARCH("N/A",R2C)),RC="") - - - - - R2C22:R3C22,R18C22:R105C22,R8C22:R10C22,R13C22:R15C22 - - AND(RC<>"",LEFT(RC5,1)<>"@",LEFT(R[1]C1,LEN(RC1)+1)<>(RC1&"."),LEFT(R[1]C1,LEN(RC1)+2)<>("!"&RC1&".")) - - - - - R2C1:R105C24 - - LEFT(RC1,1)="!" - - - - - R8C1 - - AND(RC<>"",R[-4]C="") - - - - - R6C22:R7C22 - - AND(RC<>"",LEFT(RC5,1)<>"@",LEFT(R[3]C1,LEN(RC1)+1)<>(RC1&"."),LEFT(R[3]C1,LEN(RC1)+2)<>("!"&RC1&".")) - - - - - R6C1:R7C1,R18C1,R13C1 - - AND(RC<>"",R[-2]C="") - - - - - R4C22:R5C22 - - AND(RC<>"",LEFT(RC5,1)<>"@",LEFT(R[4]C1,LEN(RC1)+1)<>(RC1&"."),LEFT(R[4]C1,LEN(RC1)+2)<>("!"&RC1&".")) - - - - - R16C22:R17C22,R11C22:R12C22 - - AND(RC<>"",LEFT(RC5,1)<>"@",LEFT(R[2]C1,LEN(RC1)+1)<>(RC1&"."),LEFT(R[2]C1,LEN(RC1)+2)<>("!"&RC1&".")) - - - @@ -3978,12 +3856,13 @@
- - + + - - - + + + Id
- + - + - + NameUnique name for search parameter - required, lower-case, dash-delimited string status token - EpisodeOfCare.currentStatus - + EpisodeOfCare.status + The current status of the Episode of Care as provided (does not check the status history collection) organization reference Organization EpisodeOfCare.managingOrganization - + The organization that has assumed the specific responsibilities of this EpisodeOfCare date date EpisodeOfCare.period - + The provided date search value falls within the episode of care's period type @@ -4620,11 +4499,11 @@ - referral + incomingreferral reference ReferralRequest EpisodeOfCare.referralRequest - + Incoming Referral Request care-manager @@ -4634,11 +4513,11 @@ - + team-member + reference - - - + EpisodeOfCare.careTeam.member + A Practitioner or Organization allocated to the care team for this EpisodeOfCare @@ -4808,8 +4687,8 @@ 0 - 9 - 4 + 6 + 3 False @@ -4824,7 +4703,7 @@ - R2C1:R31C5 + R2C1:R4C5,R6C1:R31C5,R5C1:R5C4 AND(RC1="",RC<>"") @@ -4866,7 +4745,7 @@ - R2C5:R31C5 + R2C5:R4C5,R6C5:R31C5 AND(RC1<>"",RC="",RC4="") @@ -4886,6 +4765,31 @@ + + R5C5 + + (RC1="")<>(RC="") + + + + + R5C5 + + RC3="0..0" + + + + AND(RC<>"",RC1="") + + + + + R5C5 + + AND(RC14<>"",RC14=RC15) + + + @@ -4894,13 +4798,16 @@
- - + + - - - - + + + + Name
- - - - - + + + + + - - + + Event Code - + @@ -6294,14 +6201,14 @@ ss:Hidden="1"/>
- - - + + + - - + + Name
- - + + - - - - + + + + - - - + + + Binding Name
- - - - - + + + + + - + Code Planned - This episode of care is planned to start at the date specified in the period.start. During this status an organization may perform assessments to determine if they are eligible to receive services, or be organizing to make resources available to provide care services. + This episode of care is planned to start at the date specified in the period.start. During this status an organization may perform assessments to determine if they are eligible to receive services, or be organizing to make resources available to provide care services - active + waitlist 2 + Waitlist + This episode has been placed on a waitlist, pending the episode being made active (or cancelled) + + + + + + active + 3 + + Active This episode of care is current @@ -7485,47 +7406,36 @@ onhold - 3 + 4 On Hold - This episode of care is on hold, the organization has limitted responsibility for the patient (such as while on respite) + This episode of care is on hold, the organization has limited responsibility for the patient (such as while on respite) finished - 4 - - - Finished - This episode of care is finished at the organization is not expecting to be providing care to the patient - - - - - - withdrawn 5 - Withdrawn - The episode of care was withdrawn from service, often selected during the planned stage as the patient may have gone elsewhere, or the circumstances have changed and the organization is unable to provide the care. + Finished + This episode of care is finished at the organization is not expecting to be providing care to the patient. Can also be known as "closed", "completed" or other similar terms - other + cancelled 6 - Other - The status is outside one of these values, an extension should be used to define what the status reason is. + Cancelled + The episode of care was cancelled, or withdrawn from service, often selected during the planned stage as the patient may have gone elsewhere, or the circumstances have changed and the organization is unable to provide the care. It indicates that services terminated outside the planned/expected workflow - Need to determine if this status is actually required. + @@ -8028,8 +7938,8 @@ 0 - 4 - 0 + 2 + 4 False @@ -8038,21 +7948,21 @@ - R2C1:R18C9,R20C1:R50C9,R19C1:R19C2,R19C4:R19C9 + R20C1:R50C9,R19C1:R19C2,R19C4:R19C9,R2C1:R18C9 AND(RC1="",RC<>"") - R2C1:R50C1 + R9C1:R50C1,R2C1:R3C1,R5C1:R7C1 AND(RC<>"",R[-1]C="") - R2C2:R18C3,R20C2:R50C3,R19C2 + R20C2:R50C3,R19C2,R2C2:R18C3 AND(RC1<>"",(RC2="")=(RC3="")) @@ -8104,5 +8014,19 @@ + + R8C1 + + AND(RC<>"",#REF!="") + + + + + R4C1 + + AND(RC<>"",R[-2]C="") + + + diff --git a/hapi-tinder-plugin/src/main/resources/res/dstu2/familymemberhistory-spreadsheet.xml b/hapi-tinder-plugin/src/main/resources/res/dstu2/familymemberhistory-spreadsheet.xml new file mode 100644 index 00000000000..c5a3b73113e --- /dev/null +++ b/hapi-tinder-plugin/src/main/resources/res/dstu2/familymemberhistory-spreadsheet.xml @@ -0,0 +1,8394 @@ + + + + + Grahame + Lloyd + 2012-03-19T11:12:07Z + 2015-03-28T01:43:46Z + 12.00 + + + + + + 6315 + 24315 + 0 + 0 + 1 + 1 + + False + False + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + FHIR Resource-authoring Spreadsheet + + + This spreadsheet is used to support the definition of resources or data types (structures). A complete set of instructions on the various tabs, columns and rules associated with populating this spreadsheet can be found here: + + + http://wiki.hl7.org?title=FHIR_Spreadsheet_Authoring + +
+ + +
+