Patient

Dies ist unser Profil für die RS Patient

Command 'tree' could not render: File was not found for 'http://christian-dewes/test/StructureDefinition/MeinPatient'

Hier ist ein Bsp. (xml):

<Patient xmlns="http://hl7.org/fhir">
    <meta>
        <profile value="http://christiandewes/test/StructureDefinition/MeinPatient" />
    </meta>
    <extension url="http://christiandewes.de/test/StructureDefinition/SpeziesExtension">
        <valueCodeableConcept>
            <coding>
                <system value="http://fhir.ufp/CodeSystem/species" />
                <code value="VR" />
                <display value="Vulcan" />
            </coding>
        </valueCodeableConcept>
    </extension>
    <identifier>
        <system value="http://fhir.ufp/NamingSystem/ufp-citizien-id" />
        <value value="4wrgwergwer" />
    </identifier>
    <identifier>
        <system value="http://fhir.de/NamingSystem/gkv/kvid-10" />
        <value value="4wrgwergwer" />
    </identifier>
    <name>
        <family value="Mustername" />
        <given value="Simone" />
    </name>
    <gender value="female" />
    <address>
        <extension url="http://fhir.ufp/StructureDefinition/planet">
            <valueString value="Erde" />
        </extension>
        <line value="Milchstr. 42" />
        <city value="Spock" />
    </address>
</Patient>

Hier ist ein Bsp.:

{
    "resourceType": "Patient",
    "meta": {
        "profile":  [
            "http://christiandewes/test/StructureDefinition/MeinPatient"
        ]
    },
    "extension":  [
        {
            "url": "http://christiandewes.de/test/StructureDefinition/SpeziesExtension",
            "valueCodeableConcept": {
                "coding":  [
                    {
                        "system": "http://fhir.ufp/CodeSystem/species",
                        "code": "VR",
                        "display": "Vulcan"
                    }
                ]
            }
        }
    ],
    "identifier":  [
        {
            "system": "http://fhir.ufp/NamingSystem/ufp-citizien-id",
            "value": "4wrgwergwer"
        },
        {
            "system": "http://fhir.de/NamingSystem/gkv/kvid-10",
            "value": "4wrgwergwer"
        }
    ],
    "name":  [
        {
            "family": "Mustername",
            "given":  [
                "Simone"
            ]
        }
    ],
    "gender": "female",
    "address":  [
        {
            "extension":  [
                {
                    "url": "http://fhir.ufp/StructureDefinition/planet",
                    "valueString": "Erde"
                }
            ],
            "line":  [
                "Milchstr. 42"
            ],
            "city": "Spock"
        }
    ]
}