Show / Hide Table of Contents

Class RelatedPerson

Information about a person that is involved in the care for a patient, but who is not the target of healthcare, nor has a formal responsibility in the care process.

Inheritance
System.Object
Resource
DomainResource
RelatedPerson
Implements
IFhirJsonSerializable
Inherited Members
DomainResource.Contained
DomainResource.Extension
DomainResource.ModifierExtension
DomainResource.Text
Resource.Id
Resource._Id
Resource.ImplicitRules
Resource._ImplicitRules
Resource.Language
Resource._Language
Resource.Meta
Namespace: fhirCsR2.Models
Assembly: fhirCsR2.dll
Syntax
public class RelatedPerson : DomainResource, IFhirJsonSerializable

Properties

| Improve this Doc View Source

_BirthDate

Extension container element for BirthDate

Declaration
public Element _BirthDate { get; set; }
Property Value
Type Description
Element
| Improve this Doc View Source

_Gender

Extension container element for Gender

Declaration
public Element _Gender { get; set; }
Property Value
Type Description
Element
| Improve this Doc View Source

Address

Need to keep track where the related person can be contacted per postal mail or visited.

Declaration
public List<Address> Address { get; set; }
Property Value
Type Description
fhirCsR2.Models.List<Address>
| Improve this Doc View Source

BirthDate

The date on which the related person was born.

Declaration
public string BirthDate { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Gender

Needed for identification of the person, in combination with (at least) name and birth date.

Declaration
public string Gender { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Identifier

People are known by a variety of ids. Some institutions maintain several, and most collect identifiers for exchange with other organizations concerning the patient. Examples are national person identifier and local identifier.

Declaration
public List<Identifier> Identifier { get; set; }
Property Value
Type Description
fhirCsR2.Models.List<Identifier>
| Improve this Doc View Source

Name

Related persons need to be identified by name, but it is uncommon to need details about multiple other names for that person.

Declaration
public HumanName Name { get; set; }
Property Value
Type Description
HumanName
| Improve this Doc View Source

Patient

We need to know which patient this RelatedPerson is related to.

Declaration
public Reference Patient { get; set; }
Property Value
Type Description
Reference
| Improve this Doc View Source

Period

The period of time that this relationship is considered to be valid. If there are no dates defined, then the interval is unknown.

Declaration
public Period Period { get; set; }
Property Value
Type Description
Period
| Improve this Doc View Source

Photo

Many EHR systems have the capability to capture an image of persons. Fits with newer social media usage too.

Declaration
public List<Attachment> Photo { get; set; }
Property Value
Type Description
fhirCsR2.Models.List<Attachment>
| Improve this Doc View Source

Relationship

We need to know the relationship with the patient since it influences the interpretation of the information attributed to this person.

Declaration
public CodeableConcept Relationship { get; set; }
Property Value
Type Description
CodeableConcept
| Improve this Doc View Source

ResourceType

Resource Type Name

Declaration
public override string ResourceType { get; }
Property Value
Type Description
System.String
Overrides
Resource.ResourceType
| Improve this Doc View Source

Telecom

People have (primary) ways to contact them in some way such as phone, email.

Declaration
public List<ContactPoint> Telecom { get; set; }
Property Value
Type Description
fhirCsR2.Models.List<ContactPoint>

Methods

| Improve this Doc View Source

DeserializeJson(ref Utf8JsonReader, JsonSerializerOptions)

Deserialize a JSON object

Declaration
public void DeserializeJson(ref Utf8JsonReader reader, JsonSerializerOptions options)
Parameters
Type Name Description
Utf8JsonReader reader
JsonSerializerOptions options
| Improve this Doc View Source

DeserializeJsonProperty(ref Utf8JsonReader, JsonSerializerOptions, String)

Deserialize a JSON property

Declaration
public void DeserializeJsonProperty(ref Utf8JsonReader reader, JsonSerializerOptions options, string propertyName)
Parameters
Type Name Description
Utf8JsonReader reader
JsonSerializerOptions options
System.String propertyName
| Improve this Doc View Source

SerializeJson(Utf8JsonWriter, JsonSerializerOptions, Boolean)

Serialize to a JSON object

Declaration
public void SerializeJson(Utf8JsonWriter writer, JsonSerializerOptions options, bool includeStartObject = true)
Parameters
Type Name Description
Utf8JsonWriter writer
JsonSerializerOptions options
System.Boolean includeStartObject

Implements

IFhirJsonSerializable
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX