"managingOrganization":
"name": [
{
"use": "official",
"given": [
"Peter",
"James"
],
"family": "Chalmers"
},
{
"use": "usual",
"given": [
"Jim"
]
}
]
"telecom": [
{
"use": "home"
},
{
"use": "work",
"system": "phone",
"value": "(03) 5555 6473"
},
{
"use": "home",
"system": "email",
"value": "Jim@example.org"
}
]
"gender": "male"
"address": [
{
"postalCode": "3999",
"city": "PleasantVille",
"use": "home",
"line": [
"534 Erewhon St"
],
"state": "Vic"
}
]
"birthDate": "1974-12-25"
"link": [
{
"target": {
"display": "Peter Chalmers",
"reference": "RelatedPerson/peter"
}
},
{
"target": {
"display": "Peter Chalmers",
"reference": "Patient/example"
}
}
]
"photo":
"active": true
"identifier": [
{
"use": "usual",
"assigner": {
"display": "Acme Healthcare"
},
"system": "urn:oid:1.2.36.146.595.217.0.1",
"value": "12345",
"period": {
"start": "2001-05-06"
},
"type": {
"coding": [
{
"code": "MR",
"system": "http://hl7.org/fhir/v2/0203"
}
]
}
}
]
{
"name": [
{
"use": "official",
"given": [
"Peter",
"James"
],
"family": "Chalmers"
},
{
"use": "usual",
"given": [
"Jim"
]
}
],
"resourceType": "Person",
"text": {
"status": "generated",
"div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n <table>\n <tbody>\n <tr>\n <td>Name</td>\n <td>Peter James <b>Chalmers</b> ("Jim")</td>\n </tr>\n <tr>\n <td>Address</td>\n <td>534 Erewhon, Pleasantville, Vic, 3999</td>\n </tr>\n <tr>\n <td>Contacts</td>\n <td>Home: unknown. Work: (03) 5555 6473</td>\n </tr>\n <tr>\n <td>Id</td>\n <td>MRN: 12345 (Acme Healthcare)</td>\n </tr>\n </tbody>\n </table>\n </div>"
},
"address": [
{
"postalCode": "3999",
"city": "PleasantVille",
"use": "home",
"line": [
"534 Erewhon St"
],
"state": "Vic"
}
],
"birthDate": "1974-12-25",
"telecom": [
{
"use": "home"
},
{
"use": "work",
"system": "phone",
"value": "(03) 5555 6473"
},
{
"use": "home",
"system": "email",
"value": "Jim@example.org"
}
],
"link": [
{
"target": {
"display": "Peter Chalmers",
"reference": "RelatedPerson/peter"
}
},
{
"target": {
"display": "Peter Chalmers",
"reference": "Patient/example"
}
}
],
"gender": "male",
"active": true,
"identifier": [
{
"use": "usual",
"assigner": {
"display": "Acme Healthcare"
},
"system": "urn:oid:1.2.36.146.595.217.0.1",
"value": "12345",
"period": {
"start": "2001-05-06"
},
"type": {
"coding": [
{
"code": "MR",
"system": "http://hl7.org/fhir/v2/0203"
}
]
}
}
],
"id": "example"
}
{
"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
}]
}
The following search parameters can be used to query Person resources. Just submit them like so:
https://api.1up.health/fhir/stu3/Person?query-param=queryvalue
Search Parameter | Field Type | Resource Fields Searched |
---|---|---|
address | text | address.line, address.city, address.state, address.country, address.postalCode, address.text |
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.where |
gender | text | gender |
identifier | text | identifier |
link | reference | link.target |
name | text | name.family, name.give, name.prefix, name.suffix, name.suffix, name.text |
organization | reference | managingOrganization |
patient | reference | link.target |
phone | text | telecom.where |
phonetic | text | name |
practitioner | reference | link.target |
relatedperson | reference | link.target |
telecom | text | telecom |