This page is part of the FHIR Specification (v4.3.0: R4B - STU). The current version which supercedes this version is 5.0.0. For a full list of available versions, see the Directory of published versions . Page versions: R5 R4B R4 R3 R2
FHIR Infrastructure Work Group | Maturity Level: N/A | Standards Status: Informative | Compartments: Not linked to any defined compartments |
Raw JSON (canonical form + also see JSON Format Specification)
An example transaction
{ "resourceType": "Bundle", "id": "bundle-transaction", "meta": { "lastUpdated": "2014-08-18T01:43:30Z" }, "type": "transaction", "entry": [ { "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-c5e300945f0a", "resource": { "resourceType": "Patient", "text": { "status": "generated", "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Some narrative</div>" }, "active": true, "name": [ { "use": "official", "family": "Chalmers", "given": [ "Peter", "James" ] } ], "gender": "male", "birthDate": "1974-12-25" }, "request": { "method": "POST", "url": "Patient" } }, { "fullUrl": "urn:uuid:88f151c0-a954-468a-88bd-5ae15c08e059", "resource": { "resourceType": "Patient", "text": { "status": "generated", "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Some narrative</div>" }, "identifier": [ { "system": "http:/example.org/fhir/ids", "value": "234234" } ], "active": true, "name": [ { "use": "official", "family": "Chalmers", "given": [ "Peter", "James" ] } ], "gender": "male", "birthDate": "1974-12-25" }, "request": { "method": "POST", "url": "Patient", "ifNoneExist": "identifier=http:/example.org/fhir/ids|234234" } }, { "fullUrl": "http://example.org/fhir/Patient/123", "resource": { "resourceType": "Patient", "id": "123", "text": { "status": "generated", "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Some narrative</div>" }, "active": true, "name": [ { "use": "official", "family": "Chalmers", "given": [ "Peter", "James" ] } ], "gender": "male", "birthDate": "1974-12-25" }, "request": { "method": "PUT", "url": "Patient/123" } }, { "fullUrl": "urn:uuid:74891afc-ed52-42a2-bcd7-f13d9b60f096", "resource": { "resourceType": "Patient", "text": { "status": "generated", "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Some narrative</div>" }, "identifier": [ { "system": "http:/example.org/fhir/ids", "value": "456456" } ], "active": true, "name": [ { "use": "official", "family": "Chalmers", "given": [ "Peter", "James" ] } ], "gender": "male", "birthDate": "1974-12-25" }, "request": { "method": "PUT", "url": "Patient?identifier=http:/example.org/fhir/ids|456456" } }, { "fullUrl": "http://example.org/fhir/Patient/123a", "resource": { "resourceType": "Patient", "id": "123a", "text": { "status": "generated", "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Some narrative</div>" }, "active": true, "name": [ { "use": "official", "family": "Chalmers", "given": [ "Peter", "James" ] } ], "gender": "male", "birthDate": "1974-12-25" }, "request": { "method": "PUT", "url": "Patient/123a", "ifMatch": "W/\"2\"" } }, { "request": { "method": "DELETE", "url": "Patient/234" } }, { "request": { "method": "DELETE", "url": "Patient?identifier=123456" } }, { "fullUrl": "urn:uuid:79378cb8-8f58-48e8-a5e8-60ac2755b674", "resource": { "resourceType": "Parameters", "parameter": [ { "name": "coding", "valueCoding": { "system": "http://loinc.org", "code": "1963-8" } } ] }, "request": { "method": "POST", "url": "ValueSet/$lookup" } }, { "request": { "method": "GET", "url": "Patient?name=peter" } }, { "request": { "method": "GET", "url": "Patient/12334", "ifNoneMatch": "W/\"4\"", "ifModifiedSince": "2015-08-31T08:14:33+10:00" } } ] }
Usage note: every effort has been made to ensure that the examples are correct and useful, but they are not a normative part of the specification.