This page is part of the FHIR Specification (v1.4.0: STU 3 Ballot 3). 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
The set of interactions defined by the RESTful part of the FHIR specification
@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 xs: <http://www.w3.org/2001/XMLSchema#> . # - resource ------------------------------------------------------------------- <http://hl7.org/fhir//CodeSystem/restful-interaction> a fhir:CodeSystem; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "restful-interaction"]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ] ]; fhir:CodeSystem.url [ fhir:value "http://hl7.org/fhir/restful-interaction"]; fhir:CodeSystem.name [ fhir:value "FHIR Restful Interactions"]; fhir:CodeSystem.status [ fhir:value "draft"]; fhir:CodeSystem.publisher [ fhir:value "FHIR Project"]; fhir:CodeSystem.description [ fhir:value "The set of interactions defined by the RESTful part of the FHIR specification."]; fhir:CodeSystem.caseSensitive [ fhir:value "true"^^xs:boolean]; fhir:CodeSystem.valueSet [ fhir:value "http://hl7.org/fhir/ValueSet/restful-interaction"]; fhir:CodeSystem.content [ fhir:value "complete"]; fhir:CodeSystem.concept [ fhir:index 0; fhir:CodeSystem.concept.code [ fhir:value "read" ]; fhir:CodeSystem.concept.display [ fhir:value "read" ]; fhir:CodeSystem.concept.definition [ fhir:value "Read the current state of the resource." ] ]; fhir:CodeSystem.concept [ fhir:index 1; fhir:CodeSystem.concept.code [ fhir:value "vread" ]; fhir:CodeSystem.concept.display [ fhir:value "vread" ]; fhir:CodeSystem.concept.definition [ fhir:value "Read the state of a specific version of the resource." ] ]; fhir:CodeSystem.concept [ fhir:index 2; fhir:CodeSystem.concept.code [ fhir:value "update" ]; fhir:CodeSystem.concept.display [ fhir:value "update" ]; fhir:CodeSystem.concept.definition [ fhir:value "Update an existing resource by its id (or create it if it is new)." ] ]; fhir:CodeSystem.concept [ fhir:index 3; fhir:CodeSystem.concept.code [ fhir:value "delete" ]; fhir:CodeSystem.concept.display [ fhir:value "delete" ]; fhir:CodeSystem.concept.definition [ fhir:value "Delete a resource." ] ]; fhir:CodeSystem.concept [ fhir:index 4; fhir:CodeSystem.concept.code [ fhir:value "history" ]; fhir:CodeSystem.concept.display [ fhir:value "history" ]; fhir:CodeSystem.concept.definition [ fhir:value "Retrieve the change history for a particular resource, type of resource, or the entire system." ]; fhir:CodeSystem.concept.concept [ fhir:index 0; fhir:CodeSystem.concept.code [ fhir:value "history-instance" ]; fhir:CodeSystem.concept.display [ fhir:value "history-instance" ]; fhir:CodeSystem.concept.definition [ fhir:value "Retrieve the change history for a particular resource." ] ]; fhir:CodeSystem.concept.concept [ fhir:index 1; fhir:CodeSystem.concept.code [ fhir:value "history-type" ]; fhir:CodeSystem.concept.display [ fhir:value "history-type" ]; fhir:CodeSystem.concept.definition [ fhir:value "Retrieve the change history for a all resources of a particular type." ] ]; fhir:CodeSystem.concept.concept [ fhir:index 2; fhir:CodeSystem.concept.code [ fhir:value "history-system" ]; fhir:CodeSystem.concept.display [ fhir:value "history-system" ]; fhir:CodeSystem.concept.definition [ fhir:value "Retrieve the change history for all resources on a system." ] ] ]; fhir:CodeSystem.concept [ fhir:index 5; fhir:CodeSystem.concept.code [ fhir:value "create" ]; fhir:CodeSystem.concept.display [ fhir:value "create" ]; fhir:CodeSystem.concept.definition [ fhir:value "Create a new resource with a server assigned id." ] ]; fhir:CodeSystem.concept [ fhir:index 6; fhir:CodeSystem.concept.code [ fhir:value "search" ]; fhir:CodeSystem.concept.display [ fhir:value "search" ]; fhir:CodeSystem.concept.definition [ fhir:value "Search a resource type or all resources based on some filter criteria." ]; fhir:CodeSystem.concept.concept [ fhir:index 0; fhir:CodeSystem.concept.code [ fhir:value "search-type" ]; fhir:CodeSystem.concept.display [ fhir:value "search-type" ]; fhir:CodeSystem.concept.definition [ fhir:value "Search all resources of the specified type based on some filter criteria." ] ]; fhir:CodeSystem.concept.concept [ fhir:index 1; fhir:CodeSystem.concept.code [ fhir:value "search-system" ]; fhir:CodeSystem.concept.display [ fhir:value "search-system" ]; fhir:CodeSystem.concept.definition [ fhir:value "Search all resources based on some filter criteria." ] ] ]; fhir:CodeSystem.concept [ fhir:index 7; fhir:CodeSystem.concept.code [ fhir:value "conformance" ]; fhir:CodeSystem.concept.display [ fhir:value "conformance" ]; fhir:CodeSystem.concept.definition [ fhir:value "Get a conformance statement for the system." ] ]; fhir:CodeSystem.concept [ fhir:index 8; fhir:CodeSystem.concept.code [ fhir:value "transaction" ]; fhir:CodeSystem.concept.display [ fhir:value "transaction" ]; fhir:CodeSystem.concept.definition [ fhir:value "Update, create or delete a set of resources as a single transaction." ] ]; fhir:CodeSystem.concept [ fhir:index 9; fhir:CodeSystem.concept.code [ fhir:value "batch" ]; fhir:CodeSystem.concept.display [ fhir:value "batch" ]; fhir:CodeSystem.concept.definition [ fhir:value "perform a set of a separate interactions in a single http operation" ] ]; fhir:CodeSystem.concept [ fhir:index 10; fhir:CodeSystem.concept.code [ fhir:value "operation" ]; fhir:CodeSystem.concept.display [ fhir:value "operation" ]; fhir:CodeSystem.concept.definition [ fhir:value "Perform an operation as defined by an OperationDefinition." ] ]. # -------------------------------------------------------------------------------------
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.