This page is part of the FHIR Specification (v5.0.0: R5 - STU). This is a downloaded copy of the specification. For a full list of available versions, see the Directory of published versions
. Page versions: R5 R4B R4 R3
Contactpoint.shex
Raw ShEx
ShEx statement for ContactPoint
PREFIX fhir: <http://hl7.org/fhir/>
PREFIX fhirvs: <http://hl7.org/fhir/ValueSet/>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
IMPORT <code.shex>
IMPORT <string.shex>
IMPORT <Period.shex>
IMPORT <DataType.shex>
IMPORT <positiveInt.shex>
# Details of a Technology mediated contact point (phone, fax, email, etc.)
<ContactPoint> EXTENDS @<DataType> CLOSED {
a [fhir:ContactPoint]?;
fhir:system @<code> AND
{fhir:v @fhirvs:contact-point-system}?; # phone | fax | email | pager | url
# | sms | other
fhir:value @<string>?; # The actual contact point details
fhir:use @<code> AND
{fhir:v @fhirvs:contact-point-use}?; # home | work | temp | old | mobile
# - purpose of this contact point
fhir:rank @<positiveInt>?; # Specify preferred order of use (1
# = highest)
fhir:period @<Period>?; # Time period when the contact point
# was/is in use
}
#---------------------- Value Sets ------------------------
# Telecommunications form for contact point.
fhirvs:contact-point-system ["phone" "fax" "email" "pager" "url" "sms" "other"]
# Use of contact point.
fhirvs:contact-point-use ["home" "work" "temp" "old" "mobile"]
Usage note: every effort has been made to ensure that the
ShEx files are correct and useful, but they are not a normative part
of the specification.