Person - FHIR Resource (dstu2)
This Person Resource uses the
FHIR API standard for access and structure.
Validate an Person FHIR Resource (dstu2)
Resource Attributes
Attribute | Field is list | Type | Description |
---|
active | false | boolean | This person's record is in active use
|
address | true | Address | One or more addresses for the person
|
birthDate | false | date | The date on which the person was born
|
gender | false | code | male | female | other | unknown
|
identifier | true | Identifier | A human identifier for this person
|
link | true | Data Type | Link to a resource that concerns the same actual person
|
managingOrganization | false | Reference | The organization that is the custodian of the person record
|
name | true | HumanName | A name associated with the person
|
photo | false | Attachment | Image of the person
|
telecom | true | ContactPoint | A contact detail for the person
|
Person Structure
{
"resourceType" : "Person",
// from Resource: id, meta, implicitRules, and language
// from DomainResource: text, contained, extension, and modifierExtension
"identifier" : [{ Identifier }], // A human identifier for this person
"name" : [{ HumanName }], // A name associated with the person
"telecom" : [{ ContactPoint }], // A contact detail for the person
"gender" : "<code>", // male | female | other | unknown
"birthDate" : "<date>", // The date on which the person was born
"address" : [{ Address }], // One or more addresses for the person
"photo" : { Attachment }, // Image of the person
"managingOrganization" : { Reference(Organization) }, // The organization that is the custodian of the person record
"active" : <boolean>, // This person's record is in active use
"link" : [{ // Link to a resource that concerns the same actual person
"target" : { Reference(Patient|Practitioner|RelatedPerson|Person) }, // R! The resource to which this actual person is associated
"assurance" : "<code>" // level1 | level2 | level3 | level4
}]
}
Person Search Parameters
The following search parameters can be used to query Person resources. Just submit the like so:
https://api.1up.health/fhir/dstu2/Person?query-param=queryvalue
Search Parameter | Field Type | Resource Fields Searched |
---|
address | text | address |
address-city | text | address.city |
address-country | text | address.country |
address-postalcode | text | address.postalCode |
address-state | text | address.state |
address-use | text | address.use |
birthdate | date | birthDate |
email | text | telecom |
gender | text | gender |
identifier | text | identifier |
link | reference | link.target |
name | text | name |
organization | reference | managingOrganization |
patient | reference | link.target |
phone | text | telecom |
phonetic | text | name |
practitioner | reference | link.target |
relatedperson | reference | link.target |
telecom | text | telecom |