Foundation
Publish-box
(todo)
This
is
the
Continuous
Integration
Build
of
FHIR
(will
be
incorrect/inconsistent
at
times).
See
the
Directory
of
published
versions
| Responsible Owner: Patient Care Work Group | Standards Status : Informative | Compartments : Patient |
ShEx statement for familymemberhistory
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#> # ShEx Version 2.2 IMPORT <Age.shex>IMPORT <code.shex> IMPORT <date.shex> IMPORT <Range.shex>IMPORT <Code.shex> IMPORT <Date.shex> IMPORT <Group.shex>IMPORT <string.shex> IMPORT <Period.shex>IMPORT <Range.shex> IMPORT <Device.shex> IMPORT <String.shex> IMPORT <Period.shex> IMPORT <Patient.shex>IMPORT <boolean.shex> IMPORT <dateTime.shex>IMPORT <Boolean.shex> IMPORT <DateTime.shex> IMPORT <CareTeam.shex> IMPORT <Reference.shex> IMPORT <Identifier.shex> IMPORT <Annotation.shex> IMPORT <Organization.shex> IMPORT <Practitioner.shex> IMPORT <RelatedPerson.shex> IMPORT <DomainResource.shex> IMPORT <CodeableConcept.shex> IMPORT <BackboneElement.shex> IMPORT <PractitionerRole.shex> IMPORT <CodeableReference.shex> start=@<FamilyMemberHistory> AND {fhir:nodeRole [fhir:treeRoot]} # Information about patient's relatives, relevant for patient <FamilyMemberHistory> EXTENDS @<DomainResource> CLOSED { a [fhir:FamilyMemberHistory]?;fhir:nodeRole [fhir:treeRoot]?; fhir:identifier @<OneOrMore_Identifier>?; # External Id(s) for this recordfhir:status @<code> ANDfhir:status @<Code> AND {fhir:v @fhirvs:history-status}; # partial | completed | # entered-in-error | health-unknown fhir:dataAbsentReason @<CodeableConcept>?; # subject-unknown | withheld | # unable-to-obtain | deferredfhir:patient @<Reference> AND {fhir:linkfhir:patient @<Reference> AND {fhir:l @<Patient> ? }; # Patient history is aboutfhir:date @<dateTime>?; # When history was recorded or lastfhir:date @<DateTime>?; # When history was recorded or last # updatedfhir:participant @<OneOrMore_FamilyMemberHistory.participant>?; # Who or what participated in the # activities related to the family # member history and how they were # involved fhir:name @<string>?; # The family member describedfhir:recorder @<Reference> AND {fhir:l @<CareTeam> OR @<Group> OR @<Organization> OR @<Patient> OR @<Practitioner> OR @<PractitionerRole> OR @<RelatedPerson> ? }?; # Who recorded the family member # history fhir:asserter @<Reference> AND {fhir:l @<CareTeam> OR @<Device> OR @<Group> OR @<Organization> OR @<Patient> OR @<Practitioner> OR @<PractitionerRole> OR @<RelatedPerson> ? }?; # Person or device that asserts this # family member history fhir:name @<String>?; # The family member described fhir:relationship @<CodeableConcept>; # Relationship to the subject fhir:sex @<CodeableConcept>?; # male | female | other | unknown fhir:born @<Period> OR@<date> OR @<string> ?; # (approximate) date of birth@<Date> OR @<String> ?; # (approximate) date of birth fhir:age @<Age> OR @<Range> OR@<string> ?; # (approximate) age fhir:estimatedAge @<boolean>?; # Age is estimated? fhir:deceased @<boolean> OR@<String> ?; # (approximate) age fhir:estimatedAge @<Boolean>?; # Age is estimated? fhir:deceased @<Boolean> OR @<Age> OR @<Range> OR@<date> OR @<string> ?; # Dead? How old/when?@<Date> OR @<String> ?; # Dead? How old/when? fhir:reason @<OneOrMore_CodeableReference>?; # Why was family member history # performed? fhir:note @<OneOrMore_Annotation>?; # General note about related person fhir:condition @<OneOrMore_FamilyMemberHistory.condition>?; # Condition that the related person # had fhir:procedure @<OneOrMore_FamilyMemberHistory.procedure>?; # Procedures that the related person # had }# Who or what participated in the activities related to the family member history and how they were involved <FamilyMemberHistory.participant> EXTENDS @<BackboneElement> CLOSED { fhir:function @<CodeableConcept>?; # Type of involvement fhir:actor @<Reference> AND {fhir:link @<CareTeam> OR @<Device> OR @<Group> OR @<Organization> OR @<Patient> OR @<Practitioner> OR @<PractitionerRole> OR @<RelatedPerson> ? }; # Who or what participated in the # activities related to the family # member history }# Procedures that the related person had <FamilyMemberHistory.procedure> EXTENDS @<BackboneElement> CLOSED { fhir:code @<CodeableConcept>; # Procedures performed on the # related person fhir:outcome @<CodeableConcept>?; # What happened following the # procedurefhir:contributedToDeath @<boolean>?; # Whether the procedure contributedfhir:contributedToDeath @<Boolean>?; # Whether the procedure contributed # to the cause of death fhir:performed @<Age> OR @<Range> OR @<Period> OR@<string> OR @<dateTime> ?; # When the procedure was performed@<String> OR @<DateTime> ?; # When the procedure was performed fhir:note @<OneOrMore_Annotation>?; # Extra information about the # procedure } # Condition that the related person had <FamilyMemberHistory.condition> EXTENDS @<BackboneElement> CLOSED { fhir:code @<CodeableConcept>; # Condition, allergy, or intolerance # suffered by relation fhir:outcome @<CodeableConcept>?; # deceased | permanent disability | # etcfhir:contributedToDeath @<boolean>?; # Whether the condition contributedfhir:contributedToDeath @<Boolean>?; # Whether the condition contributed # to the cause of death fhir:onset @<Age> OR @<Range> OR @<Period> OR@<string> ?; # When condition first manifested@<String> ?; # When condition first manifested fhir:note @<OneOrMore_Annotation>?; # Extra information about condition } #---------------------- Cardinality Types (OneOrMore) ------------------- <OneOrMore_Identifier> CLOSED { rdf:first @<Identifier> ; rdf:rest [rdf:nil] OR @<OneOrMore_Identifier> }<OneOrMore_FamilyMemberHistory.participant> CLOSED { rdf:first @<FamilyMemberHistory.participant> ; rdf:rest [rdf:nil] OR @<OneOrMore_FamilyMemberHistory.participant> }<OneOrMore_CodeableReference> CLOSED { rdf:first @<CodeableReference> ; rdf:rest [rdf:nil] OR @<OneOrMore_CodeableReference> } <OneOrMore_Annotation> CLOSED { rdf:first @<Annotation> ; rdf:rest [rdf:nil] OR @<OneOrMore_Annotation> } <OneOrMore_FamilyMemberHistory.condition> CLOSED { rdf:first @<FamilyMemberHistory.condition> ; rdf:rest [rdf:nil] OR @<OneOrMore_FamilyMemberHistory.condition> } <OneOrMore_FamilyMemberHistory.procedure> CLOSED { rdf:first @<FamilyMemberHistory.procedure> ; rdf:rest [rdf:nil] OR @<OneOrMore_FamilyMemberHistory.procedure> } #---------------------- Value Sets ------------------------ # A code that identifies the status of the family history record. fhirvs:history-status ["partial" "completed" "entered-in-error" "health-unknown"]
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.
FHIR
®©
HL7.org
2011+.
FHIR
R6
hl7.fhir.core#6.0.0-ballot3
generated
on
Tue,
Apr
1,
Wed,
Nov
12,
2025
12:25+1100.
19:44+0000.
Links:
Search
|
Version
History
|
Contents
|
Glossary
|
QA
|
Compare
to
R4
|
Compare
to
R5
|
Compare
to
Last
Ballot
|
|
Propose
a
change