Organization

The insurance is saved as an organization resource and linked to the coverage resource.

idΣ0..1string
metaΣ0..1Meta
implicitRulesΣ ?!0..1uri
language0..0codeBinding
text0..1Narrative
contained0..0Resource
extensionI0..*Extension
modifierExtension?! I0..*Extension
id0..1string
extensionI0..*Extension
useΣ ?!0..1codeBindingFixed Value
id0..1string
extensionI0..*Extension
id0..1string
extensionI0..*Extension
systemΣ1..1uriFixed Value
versionΣ0..1string
codeΣ1..1codeFixed Value
displayΣ0..1string
userSelectedΣ0..1boolean
textΣ0..1string
systemΣ1..1uriFixed Value
valueΣ I1..1string
periodΣ I0..1Period
assignerΣ I0..1Reference(Organization)
activeΣ ?!0..1boolean
id0..1string
extensionI0..*Extension
id0..1string
extensionI0..*Extension
systemΣ0..1uriFixed Value
versionΣ0..1string
codeΣ0..1codeFixed Value
displayΣ0..1string
userSelectedΣ0..1boolean
textΣ0..1string
nameΣ I1..1string
alias0..0string
telecomI0..1UContactPoint
addressI0..1UAddress
partOfΣ I0..0Reference(Organization)
endpointI0..0Reference(Endpoint)

In the resource Encounter.serviceProvider the specialty is linked as an organization.

Example JSON

Example data record:

{
    "resourceType": "Organization",
    "meta": {
        "profile":  [
            "http://dedalus-group.com/fhir/StructureDefinition/Organization"
        ]
    },
    "identifier":  [
        {
            "system": "http://fhir.de/NamingSystem/arge-ik/iknr",
            "value": "756756324"
        }
    ],
    "type":  [
        {
            "coding":  [
                {
                    "system": "http://terminology.hl7.org/CodeSystem/organization-type",
                    "code": "ins"
                }
            ]
        }
    ],
    "name": "Krankenkasse A",
    "telecom":  [
        {
            "system": "phone",
            "value": "+31107040704",
            "use": "work"
        }
    ],
    "address":  [
        {
            "use": "work",
            "line":  [
                "Musterstrasse 1"
            ],
            "city": "Kassenstadt",
            "postalCode": "12345",
            "country": "D"
        }
    ]
}

Example XML

Example data record::

<Organization xmlns="http://hl7.org/fhir">
    <meta>
        <profile value="http://dedalus-group.com/fhir/StructureDefinition/Organization" />
    </meta>
    <identifier>
        <system value="http://fhir.de/NamingSystem/arge-ik/iknr" />
        <value value="756756324" />
    </identifier>
    <type>
        <coding>
            <system value="http://terminology.hl7.org/CodeSystem/organization-type" />
            <code value="ins" />
        </coding>
    </type>
    <name value="Krankenkasse A" />
    <telecom>
        <system value="phone" />
        <value value="+31107040704" />
        <use value="work" />
    </telecom>
    <address>
        <use value="work" />
        <line value="Musterstrasse 1" />
        <city value="Kassenstadt" />
        <postalCode value="12345" />
        <country value="D" />
    </address>
</Organization>