Implementation SupportPublish-box (todo)
| FHIR Infrastructure Work Group | Maturity Level: N/A | Standards Status: Informative | Compartments: No defined compartments |
Raw Turtle (+ also see Turtle/RDF Format Specification)
Update TestScript Example
@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# - resource -------------------------------------------------------------------
<http://hl7.org/fhir/TestScript/testscript-example-update> a fhir:TestScript ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "testscript-example-update"] ; #
fhir:extension ( [
fhir:url [ fhir:v "http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"^^xsd:anyURI ] ;
fhir:value [
a fhir:code ;
fhir:v "fhir"
]
] ) ; #
fhir:url [ fhir:v "http://hl7.org/fhir/TestScript/testscript-example-update"^^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.5" ]
] ) ; #
fhir:version [ fhir:v "1.0"] ; #
fhir:name [ fhir:v "TestScriptExampleUpdate"] ; #
fhir:title [ fhir:v "TestScript Example Update"] ; #
fhir:status [ fhir:v "draft"] ; #
fhir:experimental [ fhir:v true] ; #
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; and single test definition to update 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 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 ] ;
fhir:validated [ fhir:v false ] ;
fhir:description [ fhir:v "Patient Update and Delete 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: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 ] ;
fhir:autodelete [ fhir:v false ] ;
fhir:resource [
fhir:link <http://hl7.org/fhir/Patient/example> ;
fhir:reference [ fhir:v "Patient/example" ] ;
fhir:display [ fhir:v "Peter Chalmers" ]
]
] [
fhir:id [ fhir:v "fixture-patient-update" ] ;
fhir:autocreate [ fhir:v false ] ;
fhir:autodelete [ fhir:v false ] ;
fhir:resource [
fhir:link <http://hl7.org/fhir/Patient/pat1> ;
fhir:reference [ fhir:v "Patient/pat1" ] ;
fhir:display [ fhir:v "Donald Duck" ]
]
] ) ; #
fhir:profile ( [
fhir:v "http://hl7.org/fhir/StructureDefinition/Patient"^^xsd:anyURI ;
fhir:link <http://hl7.org/fhir/StructureDefinition/Patient>
] ) ; #
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 "xml" ] ;
fhir:encodeRequestUrl [ fhir:v true ] ;
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 ] ;
fhir:warningOnly [ fhir:v false ]
]
] [
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 "xml" ] ;
fhir:contentType [ fhir:v "xml" ] ;
fhir:encodeRequestUrl [ fhir:v true ] ;
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 ] ;
fhir:warningOnly [ fhir:v false ]
]
] )
] ; #
fhir:test ( [
fhir:id [ fhir:v "01-UpdatePatient" ] ;
fhir:name [ fhir:v "Update Patient" ] ;
fhir:description [ fhir:v "Update a 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 "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 "xml" ] ;
fhir:contentType [ fhir:v "xml" ] ;
fhir:encodeRequestUrl [ fhir:v true ] ;
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:response [ fhir:v "okay" ] ;
fhir:stopTestOnFail [ fhir:v false ] ;
fhir:warningOnly [ fhir:v false ]
]
] [
fhir:assert [
fhir:description [ fhir:v "Confirm that the returned format is XML." ] ;
fhir:contentType [ fhir:v "xml" ] ;
fhir:stopTestOnFail [ fhir:v false ] ;
fhir:warningOnly [ fhir:v false ]
]
] [
fhir:assert [
fhir:description [ fhir:v "Confirm that the returned HTTP Header Last-Modified is present. Warning only as the server might not support versioning." ] ;
fhir:headerField [ fhir:v "Last-Modified" ] ;
fhir:operator [ fhir:v "notEmpty" ] ;
fhir:stopTestOnFail [ fhir:v false ] ;
fhir:warningOnly [ fhir:v true ]
]
] )
] ) . #
<http://hl7.org/fhir/Patient/example> a fhir:Patient .
<http://hl7.org/fhir/Patient/pat1> a fhir:Patient .
# -------------------------------------------------------------------------------------
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-ballot3 generated on Tue, Apr 1, 2025 12:26+1100.
Links: Search |
Version History |
Contents |
Glossary |
QA |
Compare to R5 |
|
Propose a change