Show / Hide Table of Contents

Class Person

Demographics and administrative information about a person independent of a specific health-related context.

Inheritance
System.Object
Resource
DomainResource
Person
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 Person : DomainResource, IFhirJsonSerializable

Properties

| Improve this Doc View Source

_Active

Extension container element for Active

Declaration
public Element _Active { get; set; }
Property Value
Type Description
Element
| 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

Active

Need to be able to mark a person record as not to be used because it was created in error.

Declaration
public bool? Active { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>
| Improve this Doc View Source

Address

May need to keep track of person's addresses for contacting, billing or reporting requirements and also to help with identification.

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

BirthDate

Age of person drives many clinical processes, and is often used in performing identification of the person. Times are not included so as to not confuse things with potential timezone issues.

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. Gender of person drives many clinical processes.

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 person. 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

Link

Link to a resource that concerns the same actual person.

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

ManagingOrganization

Need to know who recognizes this person record, manages and updates it.

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

Name

Need to be able to track the person by multiple names. Examples are your official name and a partner name.

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

Photo

An image that can be displayed as a thumbnail of the person to enhance the identification of the individual.

Declaration
public Attachment Photo { get; set; }
Property Value
Type Description
Attachment
| 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