RDC Interoperability Guide
1.0.0

rdc-Patient-Peter

{
    "resourceType": "Patient",
    "id": "rdc-Patient-Peter",
    "meta": {
        "profile":  [
            "https://roche.com/fhir/iop/StructureDefinition/rdc-Patient"
        ]
    },
    "identifier":  [
        {
            "type": {
                "coding":  [
                    {
                        "code": "RDCP",
                        "system": "https://roche.com/fhir/iop/CodeSystem/identifier-type",
                        "display": "Patient ID in RDCP eConnecta"
                    }
                ]
            },
            "value": "12345"
        }
    ],
    "active": true,
    "name":  [
        {
            "use": "official",
            "family": "Chalmers",
            "given":  [
                "Peter",
                "James"
            ]
        },
        {
            "use": "usual",
            "given":  [
                "Jim"
            ]
        },
        {
            "use": "maiden",
            "family": "Windsor",
            "given":  [
                "Peter",
                "James"
            ],
            "period": {
                "end": "2002"
            }
        }
    ],
    "telecom":  [
        {
            "use": "home"
        },
        {
            "system": "phone",
            "value": "(03) 5555 6473",
            "_value": {
                "extension":  [
                    {
                        "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
                        "valueString": "284"
                    }
                ]
            },
            "use": "work",
            "rank": 1
        },
        {
            "system": "phone",
            "value": "(03) 3410 5613",
            "_value": {
                "extension":  [
                    {
                        "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
                        "valueString": "284"
                    }
                ]
            },
            "use": "mobile",
            "rank": 2
        }
    ],
    "gender": "male",
    "birthDate": "1974-12-25",
    "address":  [
        {
            "use": "home",
            "line":  [
                "534 Erewhon St"
            ],
            "city": "PleasantVille",
            "district": "Rainbow",
            "state": "Vic",
            "postalCode": "3999",
            "period": {
                "start": "1974-12-25"
            }
        }
    ],
    "contact":  [
        {
            "relationship":  [
                {
                    "coding":  [
                        {
                            "code": "N",
                            "system": "http://terminology.hl7.org/CodeSystem/v2-0131"
                        }
                    ]
                }
            ],
            "name": {
                "family": "du Marché",
                "given":  [
                    "Bénédicte"
                ]
            },
            "telecom":  [
                {
                    "system": "phone",
                    "value": "+33 (237) 998327"
                }
            ]
        }
    ]
}
<Patient xmlns="http://hl7.org/fhir">
    <id value="rdc-Patient-Peter" />
    <meta>
        <profile value="https://roche.com/fhir/iop/StructureDefinition/rdc-Patient" />
    </meta>
    <identifier>
        <type>
            <coding>
                <system value="https://roche.com/fhir/iop/CodeSystem/identifier-type" />
                <code value="RDCP" />
                <display value="Patient ID in RDCP eConnecta" />
            </coding>
        </type>
        <value value="12345" />
    </identifier>
    <active value="true" />
    <name>
        <use value="official" />
        <family value="Chalmers" />
        <given value="Peter" />
        <given value="James" />
    </name>
    <name>
        <use value="usual" />
        <given value="Jim" />
    </name>
    <name>
        <use value="maiden" />
        <family value="Windsor" />
        <given value="Peter" />
        <given value="James" />
        <period>
            <end value="2002" />
        </period>
    </name>
    <telecom>
        <use value="home" />
    </telecom>
    <telecom>
        <system value="phone" />
        <value value="(03) 5555 6473">
            <extension url="http://hl7.org/fhir/StructureDefinition/contactpoint-country">
                <valueString value="284" />
            </extension>
        </value>
        <use value="work" />
        <rank value="1" />
    </telecom>
    <telecom>
        <system value="phone" />
        <value value="(03) 3410 5613">
            <extension url="http://hl7.org/fhir/StructureDefinition/contactpoint-country">
                <valueString value="284" />
            </extension>
        </value>
        <use value="mobile" />
        <rank value="2" />
    </telecom>
    <gender value="male" />
    <birthDate value="1974-12-25" />
    <address>
        <use value="home" />
        <line value="534 Erewhon St" />
        <city value="PleasantVille" />
        <district value="Rainbow" />
        <state value="Vic" />
        <postalCode value="3999" />
        <period>
            <start value="1974-12-25" />
        </period>
    </address>
    <contact>
        <relationship>
            <coding>
                <system value="http://terminology.hl7.org/CodeSystem/v2-0131" />
                <code value="N" />
            </coding>
        </relationship>
        <name>
            <family value="du March&#233;" />
            <given value="B&#233;n&#233;dicte" />
        </name>
        <telecom>
            <system value="phone" />
            <value value="+33 (237) 998327" />
        </telecom>
    </contact>
</Patient>
Patient
Patient.id[0]rdc-Patient-Peter
Patient.meta[0].profile[0]https://roche.com/fhir/iop/StructureDefinition/rdc-Patient
Patient.identifier[0].type[0].coding[0].system[0]https://roche.com/fhir/iop/CodeSystem/identifier-type
Patient.identifier[0].type[0].coding[0].code[0]RDCP
Patient.identifier[0].type[0].coding[0].display[0]Patient ID in RDCP eConnecta
Patient.identifier[0].value[0]12345
Patient.active[0]True
Patient.name[0].use[0]official
Patient.name[0].family[0]Chalmers
Patient.name[0].given[0]Peter
Patient.name[0].given[1]James
Patient.name[1].use[0]usual
Patient.name[1].given[0]Jim
Patient.name[2].use[0]maiden
Patient.name[2].family[0]Windsor
Patient.name[2].given[0]Peter
Patient.name[2].given[1]James
Patient.name[2].period[0].end[0]2002
Patient.telecom[0].use[0]home
Patient.telecom[1].system[0]phone
Patient.telecom[1].value[0](03) 5555 6473
Patient.telecom[1].value[0].extension[0].url[0]http://hl7.org/fhir/StructureDefinition/contactpoint-country
Patient.telecom[1].value[0].extension[0].value[0]284
Patient.telecom[1].use[0]work
Patient.telecom[1].rank[0]1
Patient.telecom[2].system[0]phone
Patient.telecom[2].value[0](03) 3410 5613
Patient.telecom[2].value[0].extension[0].url[0]http://hl7.org/fhir/StructureDefinition/contactpoint-country
Patient.telecom[2].value[0].extension[0].value[0]284
Patient.telecom[2].use[0]mobile
Patient.telecom[2].rank[0]2
Patient.gender[0]male
Patient.birthDate[0]1974-12-25
Patient.address[0].use[0]home
Patient.address[0].line[0]534 Erewhon St
Patient.address[0].city[0]PleasantVille
Patient.address[0].district[0]Rainbow
Patient.address[0].state[0]Vic
Patient.address[0].postalCode[0]3999
Patient.address[0].period[0].start[0]1974-12-25
Patient.contact[0].relationship[0].coding[0].system[0]http://terminology.hl7.org/CodeSystem/v2-0131
Patient.contact[0].relationship[0].coding[0].code[0]N
Patient.contact[0].name[0].family[0]du Marché
Patient.contact[0].name[0].given[0]Bénédicte
Patient.contact[0].telecom[0].system[0]phone
Patient.contact[0].telecom[0].value[0]+33 (237) 998327