Medplum · Example Payload

Medplum Patient Create Example

HealthcareFHIROpen SourceDeveloper PlatformHIPAASMART on FHIRClinicalInteroperability

Medplum Patient Create Example is an example object payload from Medplum, with 7 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

resourceTypeidentifiernamegenderbirthDatetelecomaddress

Example Payload

Raw ↑
{
  "resourceType": "Patient",
  "identifier": [
    {
      "system": "https://example.org/mrn",
      "value": "MRN-000123"
    }
  ],
  "name": [
    {
      "use": "official",
      "family": "Lane",
      "given": ["Kin"]
    }
  ],
  "gender": "male",
  "birthDate": "1974-05-12",
  "telecom": [
    { "system": "email", "value": "kin@example.org" },
    { "system": "phone", "value": "+1-555-0100", "use": "mobile" }
  ],
  "address": [
    {
      "use": "home",
      "city": "Hermosa Beach",
      "state": "CA",
      "postalCode": "90254",
      "country": "US"
    }
  ]
}