Extensions for Using Data Elements from FHIR R5 in FHIR R4 - Downloaded Version null See the Directory of published versions
| Official URL: http://hl7.org/fhir/5.0/StructureDefinition/profile-CapabilityStatement | Version: 0.1.0 | |||
| Standards status: Trial-use | Maturity Level: 0 | Computable Name: Profile_R5_CapabilityStatement_R4 | ||
This cross-version profile allows R5 CapabilityStatement content to be represented via FHIR R4 CapabilityStatement resources.
Usages:
You can also check for usages in the FHIR IG Statistics
Description of Profiles, Differentials, Snapshots and how the different presentations work.
| Name | Flags | Card. | Type | Description & Constraints Filter: ![]() ![]() |
|---|---|---|---|---|
![]() |
C | 0..* | CapabilityStatement(4.0.1) | A statement of system capabilities Constraints: cpb-0, cpb-1, cpb-2, cpb-3, cpb-7, cpb-14, cpb-15, cpb-16 |
![]() ![]() |
?!Σ | 0..1 | uri | A set of rules under which this content was created |
![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |
![]() ![]() ![]() |
0..* | Identifier | R5: Additional identifier for the CapabilityStatement (business identifier) (new) URL: http://hl7.org/fhir/5.0/StructureDefinition/extension-CapabilityStatement.identifier Constraints: ext-1 | |
![]() ![]() ![]() |
0..1 | Coding | R5: How to compare versions (new) URL: http://hl7.org/fhir/StructureDefinition/artifact-versionAlgorithm Binding: version-algorithm (??) (extensible) Constraints: ext-1 | |
![]() ![]() ![]() |
0..1 | string | R5: Copyright holder and year(s) (new) URL: http://hl7.org/fhir/StructureDefinition/artifact-copyrightLabel Constraints: ext-1 | |
![]() ![]() ![]() |
0..* | code | R5: Languages supported (new) URL: http://hl7.org/fhir/5.0/StructureDefinition/extension-CapabilityStatement.acceptLanguage Constraints: ext-1 | |
![]() ![]() |
?! | 0..* | Extension | Extensions that cannot be ignored Constraints: ext-1 |
![]() ![]() |
?!Σ | 1..1 | code | draft | active | retired | unknown Binding: PublicationStatus (required): The lifecycle status of an artifact. |
![]() ![]() |
Σ | 1..1 | dateTime | Date last changed |
![]() ![]() |
ΣC | 1..1 | code | instance | capability | requirements Binding: CapabilityStatementKind (required): How a capability statement is intended to be used. |
![]() ![]() |
ΣC | 0..1 | BackboneElement | If this describes a specific instance |
![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 |
![]() ![]() ![]() |
Σ | 1..1 | string | Describes this specific instance |
![]() ![]() |
Σ | 1..1 | code | FHIR Version the system supports Binding: FHIRVersion (required): All published FHIR Versions. |
![]() ![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |
![]() ![]() ![]() ![]() |
0..1 | code | R5: fhirVersion URL: http://hl7.org/fhir/5.0/StructureDefinition/extension-CapabilityStatement.fhirVersion Binding: R5FHIRVersionForR4 (0.1.0) (required): All published FHIR Versions. Constraints: ext-1 | |
![]() ![]() |
Σ | 1..* | code | formats supported (xml | json | ttl | mime type) Binding: Mime Types (required): The mime type of an attachment. Any valid mime type is allowed. |
Documentation for this format | ||||
| Path | Status | Usage | ValueSet | Version | Source |
| CapabilityStatement.status | Base | required | PublicationStatus | 📍4.0.1 | FHIR Std. |
| CapabilityStatement.kind | Base | required | CapabilityStatementKind | 📍4.0.1 | FHIR Std. |
| CapabilityStatement.fhirVersion | Base | required |
FHIRVersion
|
📍4.0.1 | tx.fhir.org |
| CapabilityStatement.format | Base | required | MimeType | 📍4.0.1 | FHIR Std. |
| Id | Grade | Path(s) | Description | Expression |
| cpb-0 | warning | CapabilityStatement | Name should be usable as an identifier for the module by machine processing applications such as code generation |
name.matches('[A-Z]([A-Za-z0-9_]){0,254}')
|
| cpb-1 | error | CapabilityStatement | A Capability Statement SHALL have at least one of REST, messaging or document element. |
rest.exists() or messaging.exists() or document.exists()
|
| cpb-2 | error | CapabilityStatement | A Capability Statement SHALL have at least one of description, software, or implementation element. |
(description.count() + software.count() + implementation.count()) > 0
|
| cpb-3 | error | CapabilityStatement | Messaging end-point is required (and is only permitted) when a statement is for an implementation. |
messaging.endpoint.empty() or kind = 'instance'
|
| cpb-7 | error | CapabilityStatement | The set of documents must be unique by the combination of profile and mode. |
document.select(profile&mode).isDistinct()
|
| cpb-14 | error | CapabilityStatement | If kind = instance, implementation must be present and software may be present |
(kind != 'instance') or implementation.exists()
|
| cpb-15 | error | CapabilityStatement | If kind = capability, implementation must be absent, software must be present |
(kind != 'capability') or (implementation.exists().not() and software.exists())
|
| cpb-16 | error | CapabilityStatement | If kind = requirements, implementation and software must be absent |
(kind!='requirements') or (implementation.exists().not() and software.exists().not())
|
| dom-2 | error | CapabilityStatement | If the resource is contained in another resource, it SHALL NOT contain nested Resources |
contained.contained.empty()
|
| dom-3 | error | CapabilityStatement | If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource or SHALL refer to the containing resource |
contained.where((('#'+id in (%resource.descendants().reference | %resource.descendants().as(canonical) | %resource.descendants().as(uri) | %resource.descendants().as(url))) or descendants().where(reference = '#').exists() or descendants().where(as(canonical) = '#').exists() or descendants().where(as(canonical) = '#').exists()).not()).trace('unmatched', id).empty()
|
| dom-4 | error | CapabilityStatement | If a resource is contained in another resource, it SHALL NOT have a meta.versionId or a meta.lastUpdated |
contained.meta.versionId.empty() and contained.meta.lastUpdated.empty()
|
| dom-5 | error | CapabilityStatement | If a resource is contained in another resource, it SHALL NOT have a security label |
contained.meta.security.empty()
|
| dom-6 | best practice | CapabilityStatement | A resource should have narrative for robust management |
text.`div`.exists()
|
| ele-1 | error | CapabilityStatement.implicitRules, CapabilityStatement.extension, CapabilityStatement.extension:identifier, CapabilityStatement.extension:versionAlgorithm, CapabilityStatement.extension:copyrightLabel, CapabilityStatement.extension:acceptLanguage, CapabilityStatement.modifierExtension, CapabilityStatement.status, CapabilityStatement.date, CapabilityStatement.kind, CapabilityStatement.implementation, CapabilityStatement.implementation.modifierExtension, CapabilityStatement.implementation.description, CapabilityStatement.fhirVersion, CapabilityStatement.fhirVersion.extension, CapabilityStatement.fhirVersion.extension:fhirVersion, CapabilityStatement.format | All FHIR elements must have a @value or children |
hasValue() or (children().count() > id.count())
|
| ext-1 | error | CapabilityStatement.extension, CapabilityStatement.extension:identifier, CapabilityStatement.extension:versionAlgorithm, CapabilityStatement.extension:copyrightLabel, CapabilityStatement.extension:acceptLanguage, CapabilityStatement.modifierExtension, CapabilityStatement.implementation.modifierExtension, CapabilityStatement.fhirVersion.extension, CapabilityStatement.fhirVersion.extension:fhirVersion | Must have either extensions or value[x], not both |
extension.exists() != value.exists()
|
This structure is derived from CapabilityStatement
| Name | Flags | Card. | Type | Description & Constraints Filter: ![]() ![]() | ||||
|---|---|---|---|---|---|---|---|---|
![]() |
C | 0..* | CapabilityStatement(4.0.1) | A statement of system capabilities Constraints: cpb-0, cpb-1, cpb-2, cpb-3, cpb-7, cpb-14, cpb-15, cpb-16 | ||||
![]() ![]() |
Σ | 0..1 | id | Logical id of this artifact | ||||
![]() ![]() |
Σ | 0..1 | Meta | Metadata about the resource | ||||
![]() ![]() |
?!Σ | 0..1 | uri | A set of rules under which this content was created | ||||
![]() ![]() |
0..1 | code | Language of the resource content Binding: CommonLanguages (preferred): A human language.
| |||||
![]() ![]() |
0..1 | Narrative | Text summary of the resource, for human interpretation This profile does not constrain the narrative in regard to content, language, or traceability to data elements | |||||
![]() ![]() |
0..* | Resource | Contained, inline Resources | |||||
![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() |
0..* | Identifier | R5: Additional identifier for the CapabilityStatement (business identifier) (new) URL: http://hl7.org/fhir/5.0/StructureDefinition/extension-CapabilityStatement.identifier Constraints: ext-1 | |||||
![]() ![]() ![]() |
0..1 | Coding | R5: How to compare versions (new) URL: http://hl7.org/fhir/StructureDefinition/artifact-versionAlgorithm Binding: version-algorithm (??) (extensible) Constraints: ext-1 | |||||
![]() ![]() ![]() |
0..1 | string | R5: Copyright holder and year(s) (new) URL: http://hl7.org/fhir/StructureDefinition/artifact-copyrightLabel Constraints: ext-1 | |||||
![]() ![]() ![]() |
0..* | code | R5: Languages supported (new) URL: http://hl7.org/fhir/5.0/StructureDefinition/extension-CapabilityStatement.acceptLanguage Constraints: ext-1 | |||||
![]() ![]() |
?! | 0..* | Extension | Extensions that cannot be ignored Constraints: ext-1 | ||||
![]() ![]() |
Σ | 0..1 | uri | Canonical identifier for this capability statement, represented as a URI (globally unique) | ||||
![]() ![]() |
Σ | 0..1 | string | Business version of the capability statement | ||||
![]() ![]() |
ΣC | 0..1 | string | Name for this capability statement (computer friendly) | ||||
![]() ![]() |
Σ | 0..1 | string | Name for this capability statement (human friendly) | ||||
![]() ![]() |
?!Σ | 1..1 | code | draft | active | retired | unknown Binding: PublicationStatus (required): The lifecycle status of an artifact. | ||||
![]() ![]() |
Σ | 0..1 | boolean | For testing purposes, not real usage | ||||
![]() ![]() |
Σ | 1..1 | dateTime | Date last changed | ||||
![]() ![]() |
Σ | 0..1 | string | Name of the publisher (organization or individual) | ||||
![]() ![]() |
Σ | 0..* | ContactDetail | Contact details for the publisher | ||||
![]() ![]() |
C | 0..1 | markdown | Natural language description of the capability statement | ||||
![]() ![]() |
Σ | 0..* | UsageContext | The context that the content is intended to support | ||||
![]() ![]() |
Σ | 0..* | CodeableConcept | Intended jurisdiction for capability statement (if applicable) Binding: Jurisdiction ValueSet (extensible): Countries and regions within which this artifact is targeted for use. | ||||
![]() ![]() |
0..1 | markdown | Why this capability statement is defined | |||||
![]() ![]() |
0..1 | markdown | Use and/or publishing restrictions | |||||
![]() ![]() |
ΣC | 1..1 | code | instance | capability | requirements Binding: CapabilityStatementKind (required): How a capability statement is intended to be used. | ||||
![]() ![]() |
Σ | 0..* | canonical(CapabilityStatement) | Canonical URL of another capability statement this implements | ||||
![]() ![]() |
Σ | 0..* | canonical(CapabilityStatement) | Canonical URL of another capability statement this adds to | ||||
![]() ![]() |
ΣC | 0..1 | BackboneElement | Software that is covered by this capability statement | ||||
![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Constraints: ext-1 | |||||
![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 | ||||
![]() ![]() ![]() |
Σ | 1..1 | string | A name the software is known by | ||||
![]() ![]() ![]() |
Σ | 0..1 | string | Version covered by this statement | ||||
![]() ![]() ![]() |
Σ | 0..1 | dateTime | Date this version was released | ||||
![]() ![]() |
ΣC | 0..1 | BackboneElement | If this describes a specific instance | ||||
![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Constraints: ext-1 | |||||
![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 | ||||
![]() ![]() ![]() |
Σ | 1..1 | string | Describes this specific instance | ||||
![]() ![]() ![]() |
Σ | 0..1 | url | Base URL for the installation | ||||
![]() ![]() ![]() |
Σ | 0..1 | Reference(Organization) | Organization that manages the data | ||||
![]() ![]() |
Σ | 1..1 | code | FHIR Version the system supports Binding: FHIRVersion (required): All published FHIR Versions. | ||||
![]() ![]() ![]() |
0..1 | string | xml:id (or equivalent in JSON) | |||||
![]() ![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() |
0..1 | code | R5: fhirVersion URL: http://hl7.org/fhir/5.0/StructureDefinition/extension-CapabilityStatement.fhirVersion Binding: R5FHIRVersionForR4 (0.1.0) (required): All published FHIR Versions. Constraints: ext-1 | |||||
![]() ![]() ![]() |
0..1 | string | Primitive value for code | |||||
![]() ![]() |
Σ | 1..* | code | formats supported (xml | json | ttl | mime type) Binding: Mime Types (required): The mime type of an attachment. Any valid mime type is allowed. | ||||
![]() ![]() |
Σ | 0..* | code | Patch formats supported Binding: Mime Types (required): The mime type of an attachment. Any valid mime type is allowed. | ||||
![]() ![]() |
Σ | 0..* | canonical(ImplementationGuide) | Implementation guides supported | ||||
![]() ![]() |
ΣC | 0..* | BackboneElement | If the endpoint is a RESTful one Constraints: cpb-9 | ||||
![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Constraints: ext-1 | |||||
![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 | ||||
![]() ![]() ![]() |
Σ | 1..1 | code | client | server Binding: RestfulCapabilityMode (required): The mode of a RESTful capability statement. | ||||
![]() ![]() ![]() |
0..1 | markdown | General description of implementation | |||||
![]() ![]() ![]() |
Σ | 0..1 | BackboneElement | Information about security of implementation | ||||
![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() |
Σ | 0..1 | boolean | Adds CORS Headers (http://enable-cors.org/) | ||||
![]() ![]() ![]() ![]() |
Σ | 0..* | CodeableConcept | OAuth | SMART-on-FHIR | NTLM | Basic | Kerberos | Certificates Binding: RestfulSecurityService (extensible): Types of security services used with FHIR. | ||||
![]() ![]() ![]() ![]() |
0..1 | markdown | General description of how security works | |||||
![]() ![]() ![]() |
ΣC | 0..* | BackboneElement | Resource served on the REST interface Constraints: cpb-12 | ||||
![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() |
0..1 | boolean | R5: If allows/uses conditional patch (new) URL: http://hl7.org/fhir/5.0/StructureDefinition/extension-CapabilityStatement.rest.resource.conditionalPatch Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() |
Σ | 1..1 | code | A resource type that is supported Binding: ResourceType (required): One of the resource types defined as part of this version of FHIR. | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | xml:id (or equivalent in JSON) | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | code | R5: type additional codes URL: http://hl7.org/fhir/5.0/StructureDefinition/extension-CapabilityStatement.rest.resource.type Binding: R5ResourceTypesForR4 (0.1.0) (required): One of the resource types defined as part of this version of FHIR. Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Primitive value for code | |||||
![]() ![]() ![]() ![]() |
Σ | 0..1 | canonical(StructureDefinition) | Base System profile for all uses of resource | ||||
![]() ![]() ![]() ![]() |
Σ | 0..* | canonical(StructureDefinition) | Profiles for use cases supported | ||||
![]() ![]() ![]() ![]() |
0..1 | markdown | Additional information about the use of the resource type | |||||
![]() ![]() ![]() ![]() |
0..* | BackboneElement | What operations are supported? | |||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() ![]() |
1..1 | code | read | vread | update | patch | delete | history-instance | history-type | create | search-type Binding: TypeRestfulInteraction (required): Operations supported by REST at the type or instance level. | |||||
![]() ![]() ![]() ![]() ![]() |
0..1 | markdown | Anything special about operation behavior | |||||
![]() ![]() ![]() ![]() |
0..1 | code | no-version | versioned | versioned-update Binding: ResourceVersionPolicy (required): How the system supports versioning for a resource. | |||||
![]() ![]() ![]() ![]() |
0..1 | boolean | Whether vRead can return past versions | |||||
![]() ![]() ![]() ![]() |
0..1 | boolean | If update can commit to a new identity | |||||
![]() ![]() ![]() ![]() |
0..1 | boolean | If allows/uses conditional create | |||||
![]() ![]() ![]() ![]() |
0..1 | code | not-supported | modified-since | not-match | full-support Binding: ConditionalReadStatus (required): A code that indicates how the server supports conditional read. | |||||
![]() ![]() ![]() ![]() |
0..1 | boolean | If allows/uses conditional update | |||||
![]() ![]() ![]() ![]() |
0..1 | code | not-supported | single | multiple - how conditional delete is supported Binding: ConditionalDeleteStatus (required): A code that indicates how the server supports conditional delete. | |||||
![]() ![]() ![]() ![]() |
0..* | code | literal | logical | resolves | enforced | local Binding: ReferenceHandlingPolicy (required): A set of flags that defines how references are supported. | |||||
![]() ![]() ![]() ![]() |
0..* | string | _include values supported by the server | |||||
![]() ![]() ![]() ![]() |
0..* | string | _revinclude values supported by the server | |||||
![]() ![]() ![]() ![]() |
0..* | BackboneElement | Search parameters supported by implementation | |||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() ![]() |
1..1 | string | Name of search parameter | |||||
![]() ![]() ![]() ![]() ![]() |
0..1 | canonical(SearchParameter) | Source of definition for parameter | |||||
![]() ![]() ![]() ![]() ![]() |
1..1 | code | number | date | string | token | reference | composite | quantity | uri | special Binding: SearchParamType (required): Data types allowed to be used for search parameters. | |||||
![]() ![]() ![]() ![]() ![]() |
0..1 | markdown | Server-specific usage | |||||
![]() ![]() ![]() ![]() |
Σ | 0..* | BackboneElement | Definition of a resource operation | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() ![]() |
Σ | 1..1 | string | Name by which the operation/query is invoked | ||||
![]() ![]() ![]() ![]() ![]() |
Σ | 1..1 | canonical(OperationDefinition) | The defined operation/query | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | markdown | Specific details about operation behavior | |||||
![]() ![]() ![]() |
0..* | BackboneElement | What operations are supported? | |||||
![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() |
1..1 | code | transaction | batch | search-system | history-system Binding: SystemRestfulInteraction (required): Operations supported by REST at the system level. | |||||
![]() ![]() ![]() ![]() |
0..1 | markdown | Anything special about operation behavior | |||||
![]() ![]() ![]() |
0..* | See searchParam (CapabilityStatement) | Search parameters for searching all resources | |||||
![]() ![]() ![]() |
Σ | 0..* | See operation (CapabilityStatement) | Definition of a system level operation | ||||
![]() ![]() ![]() |
0..* | canonical(CompartmentDefinition) | Compartments served/used by system | |||||
![]() ![]() |
ΣC | 0..* | BackboneElement | If messaging is supported | ||||
![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Constraints: ext-1 | |||||
![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 | ||||
![]() ![]() ![]() |
0..* | BackboneElement | Where messages should be sent | |||||
![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() |
1..1 | Coding | http | ftp | mllp + Binding: MessageTransport (extensible): The protocol used for message transport. | |||||
![]() ![]() ![]() ![]() |
1..1 | url | Network address or identifier of the end-point | |||||
![]() ![]() ![]() |
0..1 | unsignedInt | Reliable Message Cache Length (min) | |||||
![]() ![]() ![]() |
0..1 | markdown | Messaging interface behavior details | |||||
![]() ![]() ![]() |
Σ | 0..* | BackboneElement | Messages supported by this system | ||||
![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() |
Σ | 1..1 | code | sender | receiver Binding: EventCapabilityMode (required): The mode of a message capability statement. | ||||
![]() ![]() ![]() ![]() |
Σ | 1..1 | canonical(MessageDefinition) | Message supported by this system | ||||
![]() ![]() |
ΣC | 0..* | BackboneElement | Document definition | ||||
![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Constraints: ext-1 | |||||
![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 | ||||
![]() ![]() ![]() |
Σ | 1..1 | code | producer | consumer Binding: DocumentMode (required): Whether the application produces or consumes documents. | ||||
![]() ![]() ![]() |
0..1 | markdown | Description of document support | |||||
![]() ![]() ![]() |
Σ | 1..1 | canonical(StructureDefinition) | Constraint on the resources used in the document | ||||
Documentation for this format | ||||||||
| Path | Status | Usage | ValueSet | Version | Source |
| CapabilityStatement.language | Base | preferred |
Common Languages
|
📍4.0.1 | tx.fhir.org |
| CapabilityStatement.status | Base | required | PublicationStatus | 📍4.0.1 | FHIR Std. |
| CapabilityStatement.jurisdiction | Base | extensible | Jurisdiction | 📍4.0.1 | FHIR Std. |
| CapabilityStatement.kind | Base | required | CapabilityStatementKind | 📍4.0.1 | FHIR Std. |
| CapabilityStatement.fhirVersion | Base | required |
FHIRVersion
|
📍4.0.1 | tx.fhir.org |
| CapabilityStatement.format | Base | required | MimeType | 📍4.0.1 | FHIR Std. |
| CapabilityStatement.patchFormat | Base | required | MimeType | 📍4.0.1 | FHIR Std. |
| CapabilityStatement.rest.mode | Base | required | RestfulCapabilityMode | 📍4.0.1 | FHIR Std. |
| CapabilityStatement.rest.security.service | Base | extensible | RestfulSecurityService | 📍4.0.1 | FHIR Std. |
| CapabilityStatement.rest.resource.type | Base | required |
ResourceType
|
📍4.0.1 | tx.fhir.org |
| CapabilityStatement.rest.resource.interaction.code | Base | required | TypeRestfulInteraction | 📍4.0.1 | FHIR Std. |
| CapabilityStatement.rest.resource.versioning | Base | required | ResourceVersionPolicy | 📍4.0.1 | FHIR Std. |
| CapabilityStatement.rest.resource.conditionalRead | Base | required | ConditionalReadStatus | 📍4.0.1 | FHIR Std. |
| CapabilityStatement.rest.resource.conditionalDelete | Base | required | ConditionalDeleteStatus | 📍4.0.1 | FHIR Std. |
| CapabilityStatement.rest.resource.referencePolicy | Base | required | ReferenceHandlingPolicy | 📍4.0.1 | FHIR Std. |
| CapabilityStatement.rest.resource.searchParam.type | Base | required | SearchParamType | 📍4.0.1 | FHIR Std. |
| CapabilityStatement.rest.interaction.code | Base | required | SystemRestfulInteraction | 📍4.0.1 | FHIR Std. |
| CapabilityStatement.messaging.endpoint.protocol | Base | extensible | MessageTransport | 📍4.0.1 | FHIR Std. |
| CapabilityStatement.messaging.supportedMessage.mode | Base | required | EventCapabilityMode | 📍4.0.1 | FHIR Std. |
| CapabilityStatement.document.mode | Base | required | DocumentMode | 📍4.0.1 | FHIR Std. |
| Id | Grade | Path(s) | Description | Expression |
| cpb-0 | warning | CapabilityStatement | Name should be usable as an identifier for the module by machine processing applications such as code generation |
name.matches('[A-Z]([A-Za-z0-9_]){0,254}')
|
| cpb-1 | error | CapabilityStatement | A Capability Statement SHALL have at least one of REST, messaging or document element. |
rest.exists() or messaging.exists() or document.exists()
|
| cpb-2 | error | CapabilityStatement | A Capability Statement SHALL have at least one of description, software, or implementation element. |
(description.count() + software.count() + implementation.count()) > 0
|
| cpb-3 | error | CapabilityStatement | Messaging end-point is required (and is only permitted) when a statement is for an implementation. |
messaging.endpoint.empty() or kind = 'instance'
|
| cpb-7 | error | CapabilityStatement | The set of documents must be unique by the combination of profile and mode. |
document.select(profile&mode).isDistinct()
|
| cpb-9 | error | CapabilityStatement.rest | A given resource can only be described once per RESTful mode. |
resource.select(type).isDistinct()
|
| cpb-12 | error | CapabilityStatement.rest.resource | Search parameter names must be unique in the context of a resource. |
searchParam.select(name).isDistinct()
|
| cpb-14 | error | CapabilityStatement | If kind = instance, implementation must be present and software may be present |
(kind != 'instance') or implementation.exists()
|
| cpb-15 | error | CapabilityStatement | If kind = capability, implementation must be absent, software must be present |
(kind != 'capability') or (implementation.exists().not() and software.exists())
|
| cpb-16 | error | CapabilityStatement | If kind = requirements, implementation and software must be absent |
(kind!='requirements') or (implementation.exists().not() and software.exists().not())
|
| dom-2 | error | CapabilityStatement | If the resource is contained in another resource, it SHALL NOT contain nested Resources |
contained.contained.empty()
|
| dom-3 | error | CapabilityStatement | If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource or SHALL refer to the containing resource |
contained.where((('#'+id in (%resource.descendants().reference | %resource.descendants().as(canonical) | %resource.descendants().as(uri) | %resource.descendants().as(url))) or descendants().where(reference = '#').exists() or descendants().where(as(canonical) = '#').exists() or descendants().where(as(canonical) = '#').exists()).not()).trace('unmatched', id).empty()
|
| dom-4 | error | CapabilityStatement | If a resource is contained in another resource, it SHALL NOT have a meta.versionId or a meta.lastUpdated |
contained.meta.versionId.empty() and contained.meta.lastUpdated.empty()
|
| dom-5 | error | CapabilityStatement | If a resource is contained in another resource, it SHALL NOT have a security label |
contained.meta.security.empty()
|
| dom-6 | best practice | CapabilityStatement | A resource should have narrative for robust management |
text.`div`.exists()
|
| ele-1 | error | CapabilityStatement.meta, CapabilityStatement.implicitRules, CapabilityStatement.language, CapabilityStatement.text, CapabilityStatement.extension, CapabilityStatement.extension:identifier, CapabilityStatement.extension:versionAlgorithm, CapabilityStatement.extension:copyrightLabel, CapabilityStatement.extension:acceptLanguage, CapabilityStatement.modifierExtension, CapabilityStatement.url, CapabilityStatement.version, CapabilityStatement.name, CapabilityStatement.title, CapabilityStatement.status, CapabilityStatement.experimental, CapabilityStatement.date, CapabilityStatement.publisher, CapabilityStatement.contact, CapabilityStatement.description, CapabilityStatement.useContext, CapabilityStatement.jurisdiction, CapabilityStatement.purpose, CapabilityStatement.copyright, CapabilityStatement.kind, CapabilityStatement.instantiates, CapabilityStatement.imports, CapabilityStatement.software, CapabilityStatement.software.extension, CapabilityStatement.software.modifierExtension, CapabilityStatement.software.name, CapabilityStatement.software.version, CapabilityStatement.software.releaseDate, CapabilityStatement.implementation, CapabilityStatement.implementation.extension, CapabilityStatement.implementation.modifierExtension, CapabilityStatement.implementation.description, CapabilityStatement.implementation.url, CapabilityStatement.implementation.custodian, CapabilityStatement.fhirVersion, CapabilityStatement.fhirVersion.extension, CapabilityStatement.fhirVersion.extension:fhirVersion, CapabilityStatement.format, CapabilityStatement.patchFormat, CapabilityStatement.implementationGuide, CapabilityStatement.rest, CapabilityStatement.rest.extension, CapabilityStatement.rest.modifierExtension, CapabilityStatement.rest.mode, CapabilityStatement.rest.documentation, CapabilityStatement.rest.security, CapabilityStatement.rest.security.extension, CapabilityStatement.rest.security.modifierExtension, CapabilityStatement.rest.security.cors, CapabilityStatement.rest.security.service, CapabilityStatement.rest.security.description, CapabilityStatement.rest.resource, CapabilityStatement.rest.resource.extension, CapabilityStatement.rest.resource.extension:conditionalPatch, CapabilityStatement.rest.resource.modifierExtension, CapabilityStatement.rest.resource.type, CapabilityStatement.rest.resource.type.extension, CapabilityStatement.rest.resource.type.extension:type, CapabilityStatement.rest.resource.profile, CapabilityStatement.rest.resource.supportedProfile, CapabilityStatement.rest.resource.documentation, CapabilityStatement.rest.resource.interaction, CapabilityStatement.rest.resource.interaction.extension, CapabilityStatement.rest.resource.interaction.modifierExtension, CapabilityStatement.rest.resource.interaction.code, CapabilityStatement.rest.resource.interaction.documentation, CapabilityStatement.rest.resource.versioning, CapabilityStatement.rest.resource.readHistory, CapabilityStatement.rest.resource.updateCreate, CapabilityStatement.rest.resource.conditionalCreate, CapabilityStatement.rest.resource.conditionalRead, CapabilityStatement.rest.resource.conditionalUpdate, CapabilityStatement.rest.resource.conditionalDelete, CapabilityStatement.rest.resource.referencePolicy, CapabilityStatement.rest.resource.searchInclude, CapabilityStatement.rest.resource.searchRevInclude, CapabilityStatement.rest.resource.searchParam, CapabilityStatement.rest.resource.searchParam.extension, CapabilityStatement.rest.resource.searchParam.modifierExtension, CapabilityStatement.rest.resource.searchParam.name, CapabilityStatement.rest.resource.searchParam.definition, CapabilityStatement.rest.resource.searchParam.type, CapabilityStatement.rest.resource.searchParam.documentation, CapabilityStatement.rest.resource.operation, CapabilityStatement.rest.resource.operation.extension, CapabilityStatement.rest.resource.operation.modifierExtension, CapabilityStatement.rest.resource.operation.name, CapabilityStatement.rest.resource.operation.definition, CapabilityStatement.rest.resource.operation.documentation, CapabilityStatement.rest.interaction, CapabilityStatement.rest.interaction.extension, CapabilityStatement.rest.interaction.modifierExtension, CapabilityStatement.rest.interaction.code, CapabilityStatement.rest.interaction.documentation, CapabilityStatement.rest.searchParam, CapabilityStatement.rest.operation, CapabilityStatement.rest.compartment, CapabilityStatement.messaging, CapabilityStatement.messaging.extension, CapabilityStatement.messaging.modifierExtension, CapabilityStatement.messaging.endpoint, CapabilityStatement.messaging.endpoint.extension, CapabilityStatement.messaging.endpoint.modifierExtension, CapabilityStatement.messaging.endpoint.protocol, CapabilityStatement.messaging.endpoint.address, CapabilityStatement.messaging.reliableCache, CapabilityStatement.messaging.documentation, CapabilityStatement.messaging.supportedMessage, CapabilityStatement.messaging.supportedMessage.extension, CapabilityStatement.messaging.supportedMessage.modifierExtension, CapabilityStatement.messaging.supportedMessage.mode, CapabilityStatement.messaging.supportedMessage.definition, CapabilityStatement.document, CapabilityStatement.document.extension, CapabilityStatement.document.modifierExtension, CapabilityStatement.document.mode, CapabilityStatement.document.documentation, CapabilityStatement.document.profile | All FHIR elements must have a @value or children |
hasValue() or (children().count() > id.count())
|
| ext-1 | error | CapabilityStatement.extension, CapabilityStatement.extension:identifier, CapabilityStatement.extension:versionAlgorithm, CapabilityStatement.extension:copyrightLabel, CapabilityStatement.extension:acceptLanguage, CapabilityStatement.modifierExtension, CapabilityStatement.software.extension, CapabilityStatement.software.modifierExtension, CapabilityStatement.implementation.extension, CapabilityStatement.implementation.modifierExtension, CapabilityStatement.fhirVersion.extension, CapabilityStatement.fhirVersion.extension:fhirVersion, CapabilityStatement.rest.extension, CapabilityStatement.rest.modifierExtension, CapabilityStatement.rest.security.extension, CapabilityStatement.rest.security.modifierExtension, CapabilityStatement.rest.resource.extension, CapabilityStatement.rest.resource.extension:conditionalPatch, CapabilityStatement.rest.resource.modifierExtension, CapabilityStatement.rest.resource.type.extension, CapabilityStatement.rest.resource.type.extension:type, CapabilityStatement.rest.resource.interaction.extension, CapabilityStatement.rest.resource.interaction.modifierExtension, CapabilityStatement.rest.resource.searchParam.extension, CapabilityStatement.rest.resource.searchParam.modifierExtension, CapabilityStatement.rest.resource.operation.extension, CapabilityStatement.rest.resource.operation.modifierExtension, CapabilityStatement.rest.interaction.extension, CapabilityStatement.rest.interaction.modifierExtension, CapabilityStatement.messaging.extension, CapabilityStatement.messaging.modifierExtension, CapabilityStatement.messaging.endpoint.extension, CapabilityStatement.messaging.endpoint.modifierExtension, CapabilityStatement.messaging.supportedMessage.extension, CapabilityStatement.messaging.supportedMessage.modifierExtension, CapabilityStatement.document.extension, CapabilityStatement.document.modifierExtension | Must have either extensions or value[x], not both |
extension.exists() != value.exists()
|
This structure is derived from CapabilityStatement
Summary
Extensions
This structure refers to these extensions:
Maturity: 0
Key Elements View
| Name | Flags | Card. | Type | Description & Constraints Filter: ![]() ![]() |
|---|---|---|---|---|
![]() |
C | 0..* | CapabilityStatement(4.0.1) | A statement of system capabilities Constraints: cpb-0, cpb-1, cpb-2, cpb-3, cpb-7, cpb-14, cpb-15, cpb-16 |
![]() ![]() |
?!Σ | 0..1 | uri | A set of rules under which this content was created |
![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |
![]() ![]() ![]() |
0..* | Identifier | R5: Additional identifier for the CapabilityStatement (business identifier) (new) URL: http://hl7.org/fhir/5.0/StructureDefinition/extension-CapabilityStatement.identifier Constraints: ext-1 | |
![]() ![]() ![]() |
0..1 | Coding | R5: How to compare versions (new) URL: http://hl7.org/fhir/StructureDefinition/artifact-versionAlgorithm Binding: version-algorithm (??) (extensible) Constraints: ext-1 | |
![]() ![]() ![]() |
0..1 | string | R5: Copyright holder and year(s) (new) URL: http://hl7.org/fhir/StructureDefinition/artifact-copyrightLabel Constraints: ext-1 | |
![]() ![]() ![]() |
0..* | code | R5: Languages supported (new) URL: http://hl7.org/fhir/5.0/StructureDefinition/extension-CapabilityStatement.acceptLanguage Constraints: ext-1 | |
![]() ![]() |
?! | 0..* | Extension | Extensions that cannot be ignored Constraints: ext-1 |
![]() ![]() |
?!Σ | 1..1 | code | draft | active | retired | unknown Binding: PublicationStatus (required): The lifecycle status of an artifact. |
![]() ![]() |
Σ | 1..1 | dateTime | Date last changed |
![]() ![]() |
ΣC | 1..1 | code | instance | capability | requirements Binding: CapabilityStatementKind (required): How a capability statement is intended to be used. |
![]() ![]() |
ΣC | 0..1 | BackboneElement | If this describes a specific instance |
![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 |
![]() ![]() ![]() |
Σ | 1..1 | string | Describes this specific instance |
![]() ![]() |
Σ | 1..1 | code | FHIR Version the system supports Binding: FHIRVersion (required): All published FHIR Versions. |
![]() ![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |
![]() ![]() ![]() ![]() |
0..1 | code | R5: fhirVersion URL: http://hl7.org/fhir/5.0/StructureDefinition/extension-CapabilityStatement.fhirVersion Binding: R5FHIRVersionForR4 (0.1.0) (required): All published FHIR Versions. Constraints: ext-1 | |
![]() ![]() |
Σ | 1..* | code | formats supported (xml | json | ttl | mime type) Binding: Mime Types (required): The mime type of an attachment. Any valid mime type is allowed. |
Documentation for this format | ||||
| Path | Status | Usage | ValueSet | Version | Source |
| CapabilityStatement.status | Base | required | PublicationStatus | 📍4.0.1 | FHIR Std. |
| CapabilityStatement.kind | Base | required | CapabilityStatementKind | 📍4.0.1 | FHIR Std. |
| CapabilityStatement.fhirVersion | Base | required |
FHIRVersion
|
📍4.0.1 | tx.fhir.org |
| CapabilityStatement.format | Base | required | MimeType | 📍4.0.1 | FHIR Std. |
| Id | Grade | Path(s) | Description | Expression |
| cpb-0 | warning | CapabilityStatement | Name should be usable as an identifier for the module by machine processing applications such as code generation |
name.matches('[A-Z]([A-Za-z0-9_]){0,254}')
|
| cpb-1 | error | CapabilityStatement | A Capability Statement SHALL have at least one of REST, messaging or document element. |
rest.exists() or messaging.exists() or document.exists()
|
| cpb-2 | error | CapabilityStatement | A Capability Statement SHALL have at least one of description, software, or implementation element. |
(description.count() + software.count() + implementation.count()) > 0
|
| cpb-3 | error | CapabilityStatement | Messaging end-point is required (and is only permitted) when a statement is for an implementation. |
messaging.endpoint.empty() or kind = 'instance'
|
| cpb-7 | error | CapabilityStatement | The set of documents must be unique by the combination of profile and mode. |
document.select(profile&mode).isDistinct()
|
| cpb-14 | error | CapabilityStatement | If kind = instance, implementation must be present and software may be present |
(kind != 'instance') or implementation.exists()
|
| cpb-15 | error | CapabilityStatement | If kind = capability, implementation must be absent, software must be present |
(kind != 'capability') or (implementation.exists().not() and software.exists())
|
| cpb-16 | error | CapabilityStatement | If kind = requirements, implementation and software must be absent |
(kind!='requirements') or (implementation.exists().not() and software.exists().not())
|
| dom-2 | error | CapabilityStatement | If the resource is contained in another resource, it SHALL NOT contain nested Resources |
contained.contained.empty()
|
| dom-3 | error | CapabilityStatement | If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource or SHALL refer to the containing resource |
contained.where((('#'+id in (%resource.descendants().reference | %resource.descendants().as(canonical) | %resource.descendants().as(uri) | %resource.descendants().as(url))) or descendants().where(reference = '#').exists() or descendants().where(as(canonical) = '#').exists() or descendants().where(as(canonical) = '#').exists()).not()).trace('unmatched', id).empty()
|
| dom-4 | error | CapabilityStatement | If a resource is contained in another resource, it SHALL NOT have a meta.versionId or a meta.lastUpdated |
contained.meta.versionId.empty() and contained.meta.lastUpdated.empty()
|
| dom-5 | error | CapabilityStatement | If a resource is contained in another resource, it SHALL NOT have a security label |
contained.meta.security.empty()
|
| dom-6 | best practice | CapabilityStatement | A resource should have narrative for robust management |
text.`div`.exists()
|
| ele-1 | error | CapabilityStatement.implicitRules, CapabilityStatement.extension, CapabilityStatement.extension:identifier, CapabilityStatement.extension:versionAlgorithm, CapabilityStatement.extension:copyrightLabel, CapabilityStatement.extension:acceptLanguage, CapabilityStatement.modifierExtension, CapabilityStatement.status, CapabilityStatement.date, CapabilityStatement.kind, CapabilityStatement.implementation, CapabilityStatement.implementation.modifierExtension, CapabilityStatement.implementation.description, CapabilityStatement.fhirVersion, CapabilityStatement.fhirVersion.extension, CapabilityStatement.fhirVersion.extension:fhirVersion, CapabilityStatement.format | All FHIR elements must have a @value or children |
hasValue() or (children().count() > id.count())
|
| ext-1 | error | CapabilityStatement.extension, CapabilityStatement.extension:identifier, CapabilityStatement.extension:versionAlgorithm, CapabilityStatement.extension:copyrightLabel, CapabilityStatement.extension:acceptLanguage, CapabilityStatement.modifierExtension, CapabilityStatement.implementation.modifierExtension, CapabilityStatement.fhirVersion.extension, CapabilityStatement.fhirVersion.extension:fhirVersion | Must have either extensions or value[x], not both |
extension.exists() != value.exists()
|
Differential View
This structure is derived from CapabilityStatement
Snapshot View
| Name | Flags | Card. | Type | Description & Constraints Filter: ![]() ![]() | ||||
|---|---|---|---|---|---|---|---|---|
![]() |
C | 0..* | CapabilityStatement(4.0.1) | A statement of system capabilities Constraints: cpb-0, cpb-1, cpb-2, cpb-3, cpb-7, cpb-14, cpb-15, cpb-16 | ||||
![]() ![]() |
Σ | 0..1 | id | Logical id of this artifact | ||||
![]() ![]() |
Σ | 0..1 | Meta | Metadata about the resource | ||||
![]() ![]() |
?!Σ | 0..1 | uri | A set of rules under which this content was created | ||||
![]() ![]() |
0..1 | code | Language of the resource content Binding: CommonLanguages (preferred): A human language.
| |||||
![]() ![]() |
0..1 | Narrative | Text summary of the resource, for human interpretation This profile does not constrain the narrative in regard to content, language, or traceability to data elements | |||||
![]() ![]() |
0..* | Resource | Contained, inline Resources | |||||
![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() |
0..* | Identifier | R5: Additional identifier for the CapabilityStatement (business identifier) (new) URL: http://hl7.org/fhir/5.0/StructureDefinition/extension-CapabilityStatement.identifier Constraints: ext-1 | |||||
![]() ![]() ![]() |
0..1 | Coding | R5: How to compare versions (new) URL: http://hl7.org/fhir/StructureDefinition/artifact-versionAlgorithm Binding: version-algorithm (??) (extensible) Constraints: ext-1 | |||||
![]() ![]() ![]() |
0..1 | string | R5: Copyright holder and year(s) (new) URL: http://hl7.org/fhir/StructureDefinition/artifact-copyrightLabel Constraints: ext-1 | |||||
![]() ![]() ![]() |
0..* | code | R5: Languages supported (new) URL: http://hl7.org/fhir/5.0/StructureDefinition/extension-CapabilityStatement.acceptLanguage Constraints: ext-1 | |||||
![]() ![]() |
?! | 0..* | Extension | Extensions that cannot be ignored Constraints: ext-1 | ||||
![]() ![]() |
Σ | 0..1 | uri | Canonical identifier for this capability statement, represented as a URI (globally unique) | ||||
![]() ![]() |
Σ | 0..1 | string | Business version of the capability statement | ||||
![]() ![]() |
ΣC | 0..1 | string | Name for this capability statement (computer friendly) | ||||
![]() ![]() |
Σ | 0..1 | string | Name for this capability statement (human friendly) | ||||
![]() ![]() |
?!Σ | 1..1 | code | draft | active | retired | unknown Binding: PublicationStatus (required): The lifecycle status of an artifact. | ||||
![]() ![]() |
Σ | 0..1 | boolean | For testing purposes, not real usage | ||||
![]() ![]() |
Σ | 1..1 | dateTime | Date last changed | ||||
![]() ![]() |
Σ | 0..1 | string | Name of the publisher (organization or individual) | ||||
![]() ![]() |
Σ | 0..* | ContactDetail | Contact details for the publisher | ||||
![]() ![]() |
C | 0..1 | markdown | Natural language description of the capability statement | ||||
![]() ![]() |
Σ | 0..* | UsageContext | The context that the content is intended to support | ||||
![]() ![]() |
Σ | 0..* | CodeableConcept | Intended jurisdiction for capability statement (if applicable) Binding: Jurisdiction ValueSet (extensible): Countries and regions within which this artifact is targeted for use. | ||||
![]() ![]() |
0..1 | markdown | Why this capability statement is defined | |||||
![]() ![]() |
0..1 | markdown | Use and/or publishing restrictions | |||||
![]() ![]() |
ΣC | 1..1 | code | instance | capability | requirements Binding: CapabilityStatementKind (required): How a capability statement is intended to be used. | ||||
![]() ![]() |
Σ | 0..* | canonical(CapabilityStatement) | Canonical URL of another capability statement this implements | ||||
![]() ![]() |
Σ | 0..* | canonical(CapabilityStatement) | Canonical URL of another capability statement this adds to | ||||
![]() ![]() |
ΣC | 0..1 | BackboneElement | Software that is covered by this capability statement | ||||
![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Constraints: ext-1 | |||||
![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 | ||||
![]() ![]() ![]() |
Σ | 1..1 | string | A name the software is known by | ||||
![]() ![]() ![]() |
Σ | 0..1 | string | Version covered by this statement | ||||
![]() ![]() ![]() |
Σ | 0..1 | dateTime | Date this version was released | ||||
![]() ![]() |
ΣC | 0..1 | BackboneElement | If this describes a specific instance | ||||
![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Constraints: ext-1 | |||||
![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 | ||||
![]() ![]() ![]() |
Σ | 1..1 | string | Describes this specific instance | ||||
![]() ![]() ![]() |
Σ | 0..1 | url | Base URL for the installation | ||||
![]() ![]() ![]() |
Σ | 0..1 | Reference(Organization) | Organization that manages the data | ||||
![]() ![]() |
Σ | 1..1 | code | FHIR Version the system supports Binding: FHIRVersion (required): All published FHIR Versions. | ||||
![]() ![]() ![]() |
0..1 | string | xml:id (or equivalent in JSON) | |||||
![]() ![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() |
0..1 | code | R5: fhirVersion URL: http://hl7.org/fhir/5.0/StructureDefinition/extension-CapabilityStatement.fhirVersion Binding: R5FHIRVersionForR4 (0.1.0) (required): All published FHIR Versions. Constraints: ext-1 | |||||
![]() ![]() ![]() |
0..1 | string | Primitive value for code | |||||
![]() ![]() |
Σ | 1..* | code | formats supported (xml | json | ttl | mime type) Binding: Mime Types (required): The mime type of an attachment. Any valid mime type is allowed. | ||||
![]() ![]() |
Σ | 0..* | code | Patch formats supported Binding: Mime Types (required): The mime type of an attachment. Any valid mime type is allowed. | ||||
![]() ![]() |
Σ | 0..* | canonical(ImplementationGuide) | Implementation guides supported | ||||
![]() ![]() |
ΣC | 0..* | BackboneElement | If the endpoint is a RESTful one Constraints: cpb-9 | ||||
![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Constraints: ext-1 | |||||
![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 | ||||
![]() ![]() ![]() |
Σ | 1..1 | code | client | server Binding: RestfulCapabilityMode (required): The mode of a RESTful capability statement. | ||||
![]() ![]() ![]() |
0..1 | markdown | General description of implementation | |||||
![]() ![]() ![]() |
Σ | 0..1 | BackboneElement | Information about security of implementation | ||||
![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() |
Σ | 0..1 | boolean | Adds CORS Headers (http://enable-cors.org/) | ||||
![]() ![]() ![]() ![]() |
Σ | 0..* | CodeableConcept | OAuth | SMART-on-FHIR | NTLM | Basic | Kerberos | Certificates Binding: RestfulSecurityService (extensible): Types of security services used with FHIR. | ||||
![]() ![]() ![]() ![]() |
0..1 | markdown | General description of how security works | |||||
![]() ![]() ![]() |
ΣC | 0..* | BackboneElement | Resource served on the REST interface Constraints: cpb-12 | ||||
![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() |
0..1 | boolean | R5: If allows/uses conditional patch (new) URL: http://hl7.org/fhir/5.0/StructureDefinition/extension-CapabilityStatement.rest.resource.conditionalPatch Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() |
Σ | 1..1 | code | A resource type that is supported Binding: ResourceType (required): One of the resource types defined as part of this version of FHIR. | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | xml:id (or equivalent in JSON) | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | code | R5: type additional codes URL: http://hl7.org/fhir/5.0/StructureDefinition/extension-CapabilityStatement.rest.resource.type Binding: R5ResourceTypesForR4 (0.1.0) (required): One of the resource types defined as part of this version of FHIR. Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Primitive value for code | |||||
![]() ![]() ![]() ![]() |
Σ | 0..1 | canonical(StructureDefinition) | Base System profile for all uses of resource | ||||
![]() ![]() ![]() ![]() |
Σ | 0..* | canonical(StructureDefinition) | Profiles for use cases supported | ||||
![]() ![]() ![]() ![]() |
0..1 | markdown | Additional information about the use of the resource type | |||||
![]() ![]() ![]() ![]() |
0..* | BackboneElement | What operations are supported? | |||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() ![]() |
1..1 | code | read | vread | update | patch | delete | history-instance | history-type | create | search-type Binding: TypeRestfulInteraction (required): Operations supported by REST at the type or instance level. | |||||
![]() ![]() ![]() ![]() ![]() |
0..1 | markdown | Anything special about operation behavior | |||||
![]() ![]() ![]() ![]() |
0..1 | code | no-version | versioned | versioned-update Binding: ResourceVersionPolicy (required): How the system supports versioning for a resource. | |||||
![]() ![]() ![]() ![]() |
0..1 | boolean | Whether vRead can return past versions | |||||
![]() ![]() ![]() ![]() |
0..1 | boolean | If update can commit to a new identity | |||||
![]() ![]() ![]() ![]() |
0..1 | boolean | If allows/uses conditional create | |||||
![]() ![]() ![]() ![]() |
0..1 | code | not-supported | modified-since | not-match | full-support Binding: ConditionalReadStatus (required): A code that indicates how the server supports conditional read. | |||||
![]() ![]() ![]() ![]() |
0..1 | boolean | If allows/uses conditional update | |||||
![]() ![]() ![]() ![]() |
0..1 | code | not-supported | single | multiple - how conditional delete is supported Binding: ConditionalDeleteStatus (required): A code that indicates how the server supports conditional delete. | |||||
![]() ![]() ![]() ![]() |
0..* | code | literal | logical | resolves | enforced | local Binding: ReferenceHandlingPolicy (required): A set of flags that defines how references are supported. | |||||
![]() ![]() ![]() ![]() |
0..* | string | _include values supported by the server | |||||
![]() ![]() ![]() ![]() |
0..* | string | _revinclude values supported by the server | |||||
![]() ![]() ![]() ![]() |
0..* | BackboneElement | Search parameters supported by implementation | |||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() ![]() |
1..1 | string | Name of search parameter | |||||
![]() ![]() ![]() ![]() ![]() |
0..1 | canonical(SearchParameter) | Source of definition for parameter | |||||
![]() ![]() ![]() ![]() ![]() |
1..1 | code | number | date | string | token | reference | composite | quantity | uri | special Binding: SearchParamType (required): Data types allowed to be used for search parameters. | |||||
![]() ![]() ![]() ![]() ![]() |
0..1 | markdown | Server-specific usage | |||||
![]() ![]() ![]() ![]() |
Σ | 0..* | BackboneElement | Definition of a resource operation | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() ![]() |
Σ | 1..1 | string | Name by which the operation/query is invoked | ||||
![]() ![]() ![]() ![]() ![]() |
Σ | 1..1 | canonical(OperationDefinition) | The defined operation/query | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | markdown | Specific details about operation behavior | |||||
![]() ![]() ![]() |
0..* | BackboneElement | What operations are supported? | |||||
![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() |
1..1 | code | transaction | batch | search-system | history-system Binding: SystemRestfulInteraction (required): Operations supported by REST at the system level. | |||||
![]() ![]() ![]() ![]() |
0..1 | markdown | Anything special about operation behavior | |||||
![]() ![]() ![]() |
0..* | See searchParam (CapabilityStatement) | Search parameters for searching all resources | |||||
![]() ![]() ![]() |
Σ | 0..* | See operation (CapabilityStatement) | Definition of a system level operation | ||||
![]() ![]() ![]() |
0..* | canonical(CompartmentDefinition) | Compartments served/used by system | |||||
![]() ![]() |
ΣC | 0..* | BackboneElement | If messaging is supported | ||||
![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Constraints: ext-1 | |||||
![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 | ||||
![]() ![]() ![]() |
0..* | BackboneElement | Where messages should be sent | |||||
![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() |
1..1 | Coding | http | ftp | mllp + Binding: MessageTransport (extensible): The protocol used for message transport. | |||||
![]() ![]() ![]() ![]() |
1..1 | url | Network address or identifier of the end-point | |||||
![]() ![]() ![]() |
0..1 | unsignedInt | Reliable Message Cache Length (min) | |||||
![]() ![]() ![]() |
0..1 | markdown | Messaging interface behavior details | |||||
![]() ![]() ![]() |
Σ | 0..* | BackboneElement | Messages supported by this system | ||||
![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() |
Σ | 1..1 | code | sender | receiver Binding: EventCapabilityMode (required): The mode of a message capability statement. | ||||
![]() ![]() ![]() ![]() |
Σ | 1..1 | canonical(MessageDefinition) | Message supported by this system | ||||
![]() ![]() |
ΣC | 0..* | BackboneElement | Document definition | ||||
![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Constraints: ext-1 | |||||
![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 | ||||
![]() ![]() ![]() |
Σ | 1..1 | code | producer | consumer Binding: DocumentMode (required): Whether the application produces or consumes documents. | ||||
![]() ![]() ![]() |
0..1 | markdown | Description of document support | |||||
![]() ![]() ![]() |
Σ | 1..1 | canonical(StructureDefinition) | Constraint on the resources used in the document | ||||
Documentation for this format | ||||||||
| Path | Status | Usage | ValueSet | Version | Source |
| CapabilityStatement.language | Base | preferred |
Common Languages
|
📍4.0.1 | tx.fhir.org |
| CapabilityStatement.status | Base | required | PublicationStatus | 📍4.0.1 | FHIR Std. |
| CapabilityStatement.jurisdiction | Base | extensible | Jurisdiction | 📍4.0.1 | FHIR Std. |
| CapabilityStatement.kind | Base | required | CapabilityStatementKind | 📍4.0.1 | FHIR Std. |
| CapabilityStatement.fhirVersion | Base | required |
FHIRVersion
|
📍4.0.1 | tx.fhir.org |
| CapabilityStatement.format | Base | required | MimeType | 📍4.0.1 | FHIR Std. |
| CapabilityStatement.patchFormat | Base | required | MimeType | 📍4.0.1 | FHIR Std. |
| CapabilityStatement.rest.mode | Base | required | RestfulCapabilityMode | 📍4.0.1 | FHIR Std. |
| CapabilityStatement.rest.security.service | Base | extensible | RestfulSecurityService | 📍4.0.1 | FHIR Std. |
| CapabilityStatement.rest.resource.type | Base | required |
ResourceType
|
📍4.0.1 | tx.fhir.org |
| CapabilityStatement.rest.resource.interaction.code | Base | required | TypeRestfulInteraction | 📍4.0.1 | FHIR Std. |
| CapabilityStatement.rest.resource.versioning | Base | required | ResourceVersionPolicy | 📍4.0.1 | FHIR Std. |
| CapabilityStatement.rest.resource.conditionalRead | Base | required | ConditionalReadStatus | 📍4.0.1 | FHIR Std. |
| CapabilityStatement.rest.resource.conditionalDelete | Base | required | ConditionalDeleteStatus | 📍4.0.1 | FHIR Std. |
| CapabilityStatement.rest.resource.referencePolicy | Base | required | ReferenceHandlingPolicy | 📍4.0.1 | FHIR Std. |
| CapabilityStatement.rest.resource.searchParam.type | Base | required | SearchParamType | 📍4.0.1 | FHIR Std. |
| CapabilityStatement.rest.interaction.code | Base | required | SystemRestfulInteraction | 📍4.0.1 | FHIR Std. |
| CapabilityStatement.messaging.endpoint.protocol | Base | extensible | MessageTransport | 📍4.0.1 | FHIR Std. |
| CapabilityStatement.messaging.supportedMessage.mode | Base | required | EventCapabilityMode | 📍4.0.1 | FHIR Std. |
| CapabilityStatement.document.mode | Base | required | DocumentMode | 📍4.0.1 | FHIR Std. |
| Id | Grade | Path(s) | Description | Expression |
| cpb-0 | warning | CapabilityStatement | Name should be usable as an identifier for the module by machine processing applications such as code generation |
name.matches('[A-Z]([A-Za-z0-9_]){0,254}')
|
| cpb-1 | error | CapabilityStatement | A Capability Statement SHALL have at least one of REST, messaging or document element. |
rest.exists() or messaging.exists() or document.exists()
|
| cpb-2 | error | CapabilityStatement | A Capability Statement SHALL have at least one of description, software, or implementation element. |
(description.count() + software.count() + implementation.count()) > 0
|
| cpb-3 | error | CapabilityStatement | Messaging end-point is required (and is only permitted) when a statement is for an implementation. |
messaging.endpoint.empty() or kind = 'instance'
|
| cpb-7 | error | CapabilityStatement | The set of documents must be unique by the combination of profile and mode. |
document.select(profile&mode).isDistinct()
|
| cpb-9 | error | CapabilityStatement.rest | A given resource can only be described once per RESTful mode. |
resource.select(type).isDistinct()
|
| cpb-12 | error | CapabilityStatement.rest.resource | Search parameter names must be unique in the context of a resource. |
searchParam.select(name).isDistinct()
|
| cpb-14 | error | CapabilityStatement | If kind = instance, implementation must be present and software may be present |
(kind != 'instance') or implementation.exists()
|
| cpb-15 | error | CapabilityStatement | If kind = capability, implementation must be absent, software must be present |
(kind != 'capability') or (implementation.exists().not() and software.exists())
|
| cpb-16 | error | CapabilityStatement | If kind = requirements, implementation and software must be absent |
(kind!='requirements') or (implementation.exists().not() and software.exists().not())
|
| dom-2 | error | CapabilityStatement | If the resource is contained in another resource, it SHALL NOT contain nested Resources |
contained.contained.empty()
|
| dom-3 | error | CapabilityStatement | If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource or SHALL refer to the containing resource |
contained.where((('#'+id in (%resource.descendants().reference | %resource.descendants().as(canonical) | %resource.descendants().as(uri) | %resource.descendants().as(url))) or descendants().where(reference = '#').exists() or descendants().where(as(canonical) = '#').exists() or descendants().where(as(canonical) = '#').exists()).not()).trace('unmatched', id).empty()
|
| dom-4 | error | CapabilityStatement | If a resource is contained in another resource, it SHALL NOT have a meta.versionId or a meta.lastUpdated |
contained.meta.versionId.empty() and contained.meta.lastUpdated.empty()
|
| dom-5 | error | CapabilityStatement | If a resource is contained in another resource, it SHALL NOT have a security label |
contained.meta.security.empty()
|
| dom-6 | best practice | CapabilityStatement | A resource should have narrative for robust management |
text.`div`.exists()
|
| ele-1 | error | CapabilityStatement.meta, CapabilityStatement.implicitRules, CapabilityStatement.language, CapabilityStatement.text, CapabilityStatement.extension, CapabilityStatement.extension:identifier, CapabilityStatement.extension:versionAlgorithm, CapabilityStatement.extension:copyrightLabel, CapabilityStatement.extension:acceptLanguage, CapabilityStatement.modifierExtension, CapabilityStatement.url, CapabilityStatement.version, CapabilityStatement.name, CapabilityStatement.title, CapabilityStatement.status, CapabilityStatement.experimental, CapabilityStatement.date, CapabilityStatement.publisher, CapabilityStatement.contact, CapabilityStatement.description, CapabilityStatement.useContext, CapabilityStatement.jurisdiction, CapabilityStatement.purpose, CapabilityStatement.copyright, CapabilityStatement.kind, CapabilityStatement.instantiates, CapabilityStatement.imports, CapabilityStatement.software, CapabilityStatement.software.extension, CapabilityStatement.software.modifierExtension, CapabilityStatement.software.name, CapabilityStatement.software.version, CapabilityStatement.software.releaseDate, CapabilityStatement.implementation, CapabilityStatement.implementation.extension, CapabilityStatement.implementation.modifierExtension, CapabilityStatement.implementation.description, CapabilityStatement.implementation.url, CapabilityStatement.implementation.custodian, CapabilityStatement.fhirVersion, CapabilityStatement.fhirVersion.extension, CapabilityStatement.fhirVersion.extension:fhirVersion, CapabilityStatement.format, CapabilityStatement.patchFormat, CapabilityStatement.implementationGuide, CapabilityStatement.rest, CapabilityStatement.rest.extension, CapabilityStatement.rest.modifierExtension, CapabilityStatement.rest.mode, CapabilityStatement.rest.documentation, CapabilityStatement.rest.security, CapabilityStatement.rest.security.extension, CapabilityStatement.rest.security.modifierExtension, CapabilityStatement.rest.security.cors, CapabilityStatement.rest.security.service, CapabilityStatement.rest.security.description, CapabilityStatement.rest.resource, CapabilityStatement.rest.resource.extension, CapabilityStatement.rest.resource.extension:conditionalPatch, CapabilityStatement.rest.resource.modifierExtension, CapabilityStatement.rest.resource.type, CapabilityStatement.rest.resource.type.extension, CapabilityStatement.rest.resource.type.extension:type, CapabilityStatement.rest.resource.profile, CapabilityStatement.rest.resource.supportedProfile, CapabilityStatement.rest.resource.documentation, CapabilityStatement.rest.resource.interaction, CapabilityStatement.rest.resource.interaction.extension, CapabilityStatement.rest.resource.interaction.modifierExtension, CapabilityStatement.rest.resource.interaction.code, CapabilityStatement.rest.resource.interaction.documentation, CapabilityStatement.rest.resource.versioning, CapabilityStatement.rest.resource.readHistory, CapabilityStatement.rest.resource.updateCreate, CapabilityStatement.rest.resource.conditionalCreate, CapabilityStatement.rest.resource.conditionalRead, CapabilityStatement.rest.resource.conditionalUpdate, CapabilityStatement.rest.resource.conditionalDelete, CapabilityStatement.rest.resource.referencePolicy, CapabilityStatement.rest.resource.searchInclude, CapabilityStatement.rest.resource.searchRevInclude, CapabilityStatement.rest.resource.searchParam, CapabilityStatement.rest.resource.searchParam.extension, CapabilityStatement.rest.resource.searchParam.modifierExtension, CapabilityStatement.rest.resource.searchParam.name, CapabilityStatement.rest.resource.searchParam.definition, CapabilityStatement.rest.resource.searchParam.type, CapabilityStatement.rest.resource.searchParam.documentation, CapabilityStatement.rest.resource.operation, CapabilityStatement.rest.resource.operation.extension, CapabilityStatement.rest.resource.operation.modifierExtension, CapabilityStatement.rest.resource.operation.name, CapabilityStatement.rest.resource.operation.definition, CapabilityStatement.rest.resource.operation.documentation, CapabilityStatement.rest.interaction, CapabilityStatement.rest.interaction.extension, CapabilityStatement.rest.interaction.modifierExtension, CapabilityStatement.rest.interaction.code, CapabilityStatement.rest.interaction.documentation, CapabilityStatement.rest.searchParam, CapabilityStatement.rest.operation, CapabilityStatement.rest.compartment, CapabilityStatement.messaging, CapabilityStatement.messaging.extension, CapabilityStatement.messaging.modifierExtension, CapabilityStatement.messaging.endpoint, CapabilityStatement.messaging.endpoint.extension, CapabilityStatement.messaging.endpoint.modifierExtension, CapabilityStatement.messaging.endpoint.protocol, CapabilityStatement.messaging.endpoint.address, CapabilityStatement.messaging.reliableCache, CapabilityStatement.messaging.documentation, CapabilityStatement.messaging.supportedMessage, CapabilityStatement.messaging.supportedMessage.extension, CapabilityStatement.messaging.supportedMessage.modifierExtension, CapabilityStatement.messaging.supportedMessage.mode, CapabilityStatement.messaging.supportedMessage.definition, CapabilityStatement.document, CapabilityStatement.document.extension, CapabilityStatement.document.modifierExtension, CapabilityStatement.document.mode, CapabilityStatement.document.documentation, CapabilityStatement.document.profile | All FHIR elements must have a @value or children |
hasValue() or (children().count() > id.count())
|
| ext-1 | error | CapabilityStatement.extension, CapabilityStatement.extension:identifier, CapabilityStatement.extension:versionAlgorithm, CapabilityStatement.extension:copyrightLabel, CapabilityStatement.extension:acceptLanguage, CapabilityStatement.modifierExtension, CapabilityStatement.software.extension, CapabilityStatement.software.modifierExtension, CapabilityStatement.implementation.extension, CapabilityStatement.implementation.modifierExtension, CapabilityStatement.fhirVersion.extension, CapabilityStatement.fhirVersion.extension:fhirVersion, CapabilityStatement.rest.extension, CapabilityStatement.rest.modifierExtension, CapabilityStatement.rest.security.extension, CapabilityStatement.rest.security.modifierExtension, CapabilityStatement.rest.resource.extension, CapabilityStatement.rest.resource.extension:conditionalPatch, CapabilityStatement.rest.resource.modifierExtension, CapabilityStatement.rest.resource.type.extension, CapabilityStatement.rest.resource.type.extension:type, CapabilityStatement.rest.resource.interaction.extension, CapabilityStatement.rest.resource.interaction.modifierExtension, CapabilityStatement.rest.resource.searchParam.extension, CapabilityStatement.rest.resource.searchParam.modifierExtension, CapabilityStatement.rest.resource.operation.extension, CapabilityStatement.rest.resource.operation.modifierExtension, CapabilityStatement.rest.interaction.extension, CapabilityStatement.rest.interaction.modifierExtension, CapabilityStatement.messaging.extension, CapabilityStatement.messaging.modifierExtension, CapabilityStatement.messaging.endpoint.extension, CapabilityStatement.messaging.endpoint.modifierExtension, CapabilityStatement.messaging.supportedMessage.extension, CapabilityStatement.messaging.supportedMessage.modifierExtension, CapabilityStatement.document.extension, CapabilityStatement.document.modifierExtension | Must have either extensions or value[x], not both |
extension.exists() != value.exists()
|
This structure is derived from CapabilityStatement
Summary
Extensions
This structure refers to these extensions:
Maturity: 0
Other representations of profile: CSV, Excel, Schematron