//
{
"resourceType" : "Patient",
"id" : "<string>", // Logical id of this artifact
"meta" : {Meta}, // C? Metadata about the resource
"implicitRules" : "<uri>", // C? A set of rules under which this content was created
"language" : "<code>", // C? Language of the resource content
"text" : {Narrative}, // C? Text summary of the resource, for human interpretation
"contained" : [{Resource}], // Contained, inline Resources
"extension": [
],
"identifier" : [{Identifier}], // C? An identifier for this patient
"active" : <boolean>, // C? Whether this patient's record is in active use
"name" : [{HumanName}], // C? R! A name associated with the patient
"telecom" : [{ContactPoint}], // C? A contact detail for the individual
"gender" : "<code>", // C? male | female | other | unknown
"birthDate" : "<date>", // C? The date of birth for the individual
// deceased[x]: Indicates if the individual is deceased or not. One of these 2:
"deceasedBoolean" : <boolean>, // C? Indicates if the individual is deceased or not
"deceasedDateTime" : "<dateTime>", // C? Indicates if the individual is deceased or not
"address" : [{Address}], // C? An address for the individual
"maritalStatus" : {CodeableConcept}, // C? Marital (civil) status of a patient
// multipleBirth[x]: Whether patient is part of a multiple birth. One of these 2:
"multipleBirthBoolean" : <boolean>, // C? Whether patient is part of a multiple birth
"multipleBirthInteger" : <integer>, // C? Whether patient is part of a multiple birth
"photo" : [{Attachment}], // C? Image of the patient
"contact" : [{ // C? A contact party (e.g. guardian, partner, friend) for the patient
"extension": [
],
"relationship" : [{CodeableConcept}], // C? The kind of relationship
"name" : {HumanName}, // C? A name associated with the contact person
"telecom" : [{ContactPoint}], // C? A contact detail for the person
"address" : {Address}, // C? Address for the contact person
"gender" : "<code>", // C? male | female | other | unknown
"organization" : {Reference(Organization)}, // C? Organization that is associated with the contact
"period" : {Period}, // C? The period during which this contact person or organization is valid to be contacted relating to this patient
}],
"communication" : [{ // C? A language which may be used to communicate with the patient about his or her health
"extension": [
],
"language" : {CodeableConcept}, // C? R! The language which can be used to communicate with the patient about his or her health
"preferred" : <boolean>, // C? Language preference indicator
}],
"generalPractitioner" : [{Reference(Organization)}], // C? Patient's nominated primary care provider
"managingOrganization" : {Reference(Organization)} // C? Organization that is the custodian of the patient record
"link" : [{ // C? Link to another patient resource that concerns the same actual person
"extension": [
],
"other" : {Reference(Patient)}, // C? R! The other patient or related person resource that the link refers to
"type" : "<code>", // C? R! replaced-by | replaces | refer | seealso
}],
}