This is the Continuous Integration Build of FHIR (will be incorrect/inconsistent at times).
See the Directory of published versions
FHIR Infrastructure Work Group | Maturity Level: N/A | Standards Status: Informative | Compartments: No defined compartments |
Raw Turtle (+ also see Turtle/RDF Format Specification)
History TestScript Example
@prefix fhir: <http://hl7.org/fhir/> . @prefix owl: <http://www.w3.org/2002/07/owl#> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . # - resource ------------------------------------------------------------------- [a fhir:TestScript ; fhir:nodeRole fhir:treeRoot ; fhir:id [ fhir:v "testscript-example-history"] ; # fhir:extension ( [ fhir:url [ fhir:v "http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"^^xsd:anyURI ] ; fhir:value [ fhir:v "fhir" ] ] ) ; # fhir:url [ fhir:v "http://hl7.org/fhir/TestScript/testscript-example-history"^^xsd:anyURI] ; # fhir:identifier ( [ fhir:system [ fhir:v "urn:ietf:rfc:3986"^^xsd:anyURI ] ; fhir:value [ fhir:v "urn:oid:2.16.840.1.113883.4.642.12.1" ] ] ) ; # fhir:version [ fhir:v "1.0"] ; # fhir:name [ fhir:v "TestScriptExampleHistory"] ; # fhir:title [ fhir:v "TestScript Example History"] ; # fhir:status [ fhir:v "draft"] ; # fhir:experimental [ fhir:v "true"^^xsd:boolean] ; # fhir:date [ fhir:v "2017-01-18"^^xsd:date] ; # fhir:publisher [ fhir:v "HL7 International / FHIR Infrastructure"] ; # fhir:contact ( [ fhir:telecom ( [ fhir:system [ fhir:v "url" ] ; fhir:value [ fhir:v "http://www.hl7.org/Special/committees/fiwg" ] ] ) ] ) ; # fhir:description [ fhir:v "TestScript example resource with setup to delete if present and create a new instance of a Patient then update that Patient to create a minimum history; and single test definition to get the history of that Patient with various asserts."] ; # fhir:jurisdiction ( [ fhir:coding ( [ fhir:system [ fhir:v "urn:iso:std:iso:3166"^^xsd:anyURI ] ; fhir:code [ fhir:v "US" ] ; fhir:display [ fhir:v "United States of America" ] ] ) ] ) ; # fhir:purpose [ fhir:v "Patient (Conditional) Create, Update, Delete and History (Instance) Operations"] ; # fhir:copyright [ fhir:v "© HL7.org 2011+"] ; # fhir:metadata [ fhir:link ( [ fhir:url [ fhir:v "http://hl7.org/fhir/patient.html"^^xsd:anyURI ] ; fhir:description [ fhir:v "Demographics and other administrative information about an individual or animal receiving care or other health-related services." ] ] ) ; fhir:capability ( [ fhir:required [ fhir:v "true"^^xsd:boolean ] ; fhir:validated [ fhir:v "false"^^xsd:boolean ] ; fhir:description [ fhir:v "Patient Update, Delete and History (Instance) Operations" ] ; fhir:link ( [ fhir:v "http://hl7.org/fhir/http.html#update"^^xsd:anyURI ] [ fhir:v "http://hl7.org/fhir/http.html#delete"^^xsd:anyURI ] [ fhir:v "http://hl7.org/fhir/http.html#history"^^xsd:anyURI ] ) ; fhir:capabilities [ fhir:v "http://hl7.org/fhir/CapabilityStatement/example"^^xsd:anyURI ; fhir:link <http://hl7.org/fhir/CapabilityStatement/example> ] ] ) ] ; # fhir:fixture ( [ fhir:id [ fhir:v "fixture-patient-create" ] ; fhir:autocreate [ fhir:v "false"^^xsd:boolean ] ; fhir:autodelete [ fhir:v "false"^^xsd:boolean ] ; fhir:resource [ fhir:reference [ fhir:v "Patient/example" ] ; fhir:display [ fhir:v "Peter Chalmers" ] ] ] [ fhir:id [ fhir:v "fixture-patient-update" ] ; fhir:autocreate [ fhir:v "false"^^xsd:boolean ] ; fhir:autodelete [ fhir:v "false"^^xsd:boolean ] ; fhir:resource [ fhir:reference [ fhir:v "Patient/pat1" ] ; fhir:display [ fhir:v "Donald Duck" ] ] ] ) ; # fhir:profile ( [ fhir:v "http://hl7.org/fhir/StructureDefinition/Bundle"^^xsd:anyURI ; fhir:link <http://hl7.org/fhir/StructureDefinition/Bundle> ] ) ; # fhir:variable ( [ fhir:name [ fhir:v "createResourceId" ] ; fhir:path [ fhir:v "Patient/id" ] ; fhir:sourceId [ fhir:v "fixture-patient-create" ] ] ) ; # fhir:setup [ fhir:action ( [ fhir:operation [ fhir:type [ fhir:system [ fhir:v "http://hl7.org/fhir/restful-interaction"^^xsd:anyURI ] ; fhir:code [ fhir:v "delete" ] ] ; fhir:resource [ fhir:v "Patient"^^xsd:anyURI ] ; fhir:label [ fhir:v "SetupDeletePatient" ] ; fhir:description [ fhir:v "Execute a delete operation to insure the patient does not exist on the server." ] ; fhir:accept [ fhir:v "json" ] ; fhir:encodeRequestUrl [ fhir:v "true"^^xsd:boolean ] ; fhir:params [ fhir:v "/${createResourceId}" ] ] ] [ fhir:assert [ fhir:description [ fhir:v "Confirm that the returned HTTP status is 200(OK) or 204(No Content)." ] ; fhir:direction [ fhir:v "response" ] ; fhir:operator [ fhir:v "in" ] ; fhir:responseCode [ fhir:v "200,204" ] ; fhir:stopTestOnFail [ fhir:v "false"^^xsd:boolean ] ; fhir:warningOnly [ fhir:v "false"^^xsd:boolean ] ] ] [ fhir:operation [ fhir:type [ fhir:system [ fhir:v "http://hl7.org/fhir/restful-interaction"^^xsd:anyURI ] ; fhir:code [ fhir:v "update" ] ] ; fhir:resource [ fhir:v "Patient"^^xsd:anyURI ] ; fhir:label [ fhir:v "SetupCreatePatient" ] ; fhir:description [ fhir:v "Create patient resource on test server using the contents of fixture-patient-create" ] ; fhir:accept [ fhir:v "json" ] ; fhir:contentType [ fhir:v "json" ] ; fhir:encodeRequestUrl [ fhir:v "true"^^xsd:boolean ] ; fhir:params [ fhir:v "/${createResourceId}" ] ; fhir:sourceId [ fhir:v "fixture-patient-create" ] ] ] [ fhir:assert [ fhir:description [ fhir:v "Confirm that the returned HTTP status is 201(Created)." ] ; fhir:direction [ fhir:v "response" ] ; fhir:responseCode [ fhir:v "201" ] ; fhir:stopTestOnFail [ fhir:v "false"^^xsd:boolean ] ; fhir:warningOnly [ fhir:v "false"^^xsd:boolean ] ] ] [ fhir:operation [ fhir:type [ fhir:system [ fhir:v "http://hl7.org/fhir/restful-interaction"^^xsd:anyURI ] ; fhir:code [ fhir:v "update" ] ] ; fhir:resource [ fhir:v "Patient"^^xsd:anyURI ] ; fhir:label [ fhir:v "SetupUpdatePatient" ] ; fhir:description [ fhir:v "Update patient resource on test server using the contents of fixture-patient-update" ] ; fhir:accept [ fhir:v "json" ] ; fhir:contentType [ fhir:v "json" ] ; fhir:encodeRequestUrl [ fhir:v "true"^^xsd:boolean ] ; fhir:params [ fhir:v "/${createResourceId}" ] ; fhir:sourceId [ fhir:v "fixture-patient-update" ] ] ] [ fhir:assert [ fhir:description [ fhir:v "Confirm that the returned HTTP status is 200(OK)." ] ; fhir:direction [ fhir:v "response" ] ; fhir:responseCode [ fhir:v "200" ] ; fhir:stopTestOnFail [ fhir:v "false"^^xsd:boolean ] ; fhir:warningOnly [ fhir:v "false"^^xsd:boolean ] ] ] ) ] ; # fhir:test ( [ fhir:id [ fhir:v "01-HistoryPatient" ] ; fhir:name [ fhir:v "History Patient" ] ; fhir:description [ fhir:v "Get the history for a known Patient and validate response." ] ; fhir:action ( [ fhir:operation [ fhir:type [ fhir:system [ fhir:v "http://hl7.org/fhir/restful-interaction"^^xsd:anyURI ] ; fhir:code [ fhir:v "history" ] ] ; fhir:resource [ fhir:v "Patient"^^xsd:anyURI ] ; fhir:description [ fhir:v "Get the Patient history on the test server using the id from fixture-patient-create." ] ; fhir:accept [ fhir:v "json" ] ; fhir:contentType [ fhir:v "json" ] ; fhir:encodeRequestUrl [ fhir:v "true"^^xsd:boolean ] ; fhir:targetId [ fhir:v "fixture-patient-create" ] ] ] [ fhir:assert [ fhir:description [ fhir:v "Confirm that the returned HTTP status is 200(OK)." ] ; fhir:direction [ fhir:v "response" ] ; fhir:response [ fhir:v "okay" ] ; fhir:stopTestOnFail [ fhir:v "false"^^xsd:boolean ] ; fhir:warningOnly [ fhir:v "false"^^xsd:boolean ] ] ] [ fhir:assert [ fhir:description [ fhir:v "Confirm that the returned resource type is Bundle." ] ; fhir:resource [ fhir:v "Bundle"^^xsd:anyURI ] ; fhir:stopTestOnFail [ fhir:v "false"^^xsd:boolean ] ; fhir:warningOnly [ fhir:v "false"^^xsd:boolean ] ] ] [ fhir:assert [ fhir:description [ fhir:v "Confirm that the returned Bundle conforms to the base FHIR specification." ] ; fhir:stopTestOnFail [ fhir:v "false"^^xsd:boolean ] ; fhir:validateProfileId [ fhir:v "bundle-profile" ] ; fhir:warningOnly [ fhir:v "false"^^xsd:boolean ] ] ] [ fhir:assert [ fhir:description [ fhir:v "Confirm that the returned Bundle type equals 'history'." ] ; fhir:operator [ fhir:v "equals" ] ; fhir:path [ fhir:v "fhir:Bundle/fhir:type/@value" ] ; fhir:stopTestOnFail [ fhir:v "false"^^xsd:boolean ] ; fhir:value [ fhir:v "history" ] ; fhir:warningOnly [ fhir:v "false"^^xsd:boolean ] ] ] ) ] )] . # # -------------------------------------------------------------------------------------
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.
FHIR ®© HL7.org 2011+. FHIR R6 hl7.fhir.core#6.0.0-ballot2 generated on Wed, Nov 20, 2024 21:53+0000.
Links: Search |
Version History |
Contents |
Glossary |
QA |
Compare to R5 |
|
Propose a change