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 R3
Login 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 xs: <http://www.w3.org/2001/XMLSchema#> . # - resource ------------------------------------------------------------------- <http://hl7.org/fhir//AuditEvent/example-login> a fhir:AuditEvent; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "example-login"]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ] ]; fhir:AuditEvent.type [ fhir:Coding.system [ fhir:value "http://nema.org/dicom/dicm" ]; fhir:Coding.code [ fhir:value "110114" ]; fhir:Coding.display [ fhir:value "User Authentication" ] ]; fhir:AuditEvent.subtype [ fhir:index 0; fhir:Coding.system [ fhir:value "http://nema.org/dicom/dicm" ]; fhir:Coding.code [ fhir:value "110122" ]; fhir:Coding.display [ fhir:value "Login" ] ]; fhir:AuditEvent.action [ fhir:value "E"]; fhir:AuditEvent.recorded [ fhir:value "2013-06-20T23:41:23Z"^^xs:dateTime]; fhir:AuditEvent.outcome [ fhir:value "0"]; fhir:AuditEvent.agent [ fhir:index 0; fhir:AuditEvent.agent.userId [ fhir:Identifier.value [ fhir:value "95" ] ]; fhir:AuditEvent.agent.altId [ fhir:value "601847123" ]; fhir:AuditEvent.agent.name [ fhir:value "Grahame Grieve" ]; fhir:AuditEvent.agent.requestor [ fhir:value "true"^^xs:boolean ]; fhir:AuditEvent.agent.network [ fhir:AuditEvent.agent.network.address [ fhir:value "127.0.0.1" ]; fhir:AuditEvent.agent.network.type [ fhir:value "2" ] ] ]; fhir:AuditEvent.source [ fhir:AuditEvent.source.site [ fhir:value "Cloud" ]; fhir:AuditEvent.source.identifier [ fhir:Identifier.value [ fhir:value "hl7connect.healthintersections.com.au" ] ]; fhir:AuditEvent.source.type [ fhir:index 0; fhir:Coding.system [ fhir:value "http://hl7.org/fhir/security-source-type" ]; fhir:Coding.code [ fhir:value "3" ]; fhir:Coding.display [ fhir:value "Web Server" ] ] ]. # -------------------------------------------------------------------------------------
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.