athenahealth · Schema

athenahealth Patient

Patient demographics in the athenaOne proprietary REST API.

EHRElectronic Health RecordsHealthcareHL7FHIRInteroperabilityPractice ManagementRevenue Cycle ManagementUSCDICures ActSMART on FHIRCDS HooksCloud EHR

Properties

Name Type Description
patientid string athenaOne patient identifier
firstname string
lastname string
dob string
sex string
homephone string
mobilephone string
email string
address1 string
address2 string
city string
state string
zip string
departmentid integer
race array
ethnicity string
language6392code string
primaryproviderid integer
registrationdate string
status string
View JSON Schema on GitHub

JSON Schema

athenahealth-patient-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/athena-health/main/json-schema/athenahealth-patient-schema.json",
  "title": "athenahealth Patient",
  "description": "Patient demographics in the athenaOne proprietary REST API.",
  "type": "object",
  "required": ["patientid"],
  "properties": {
    "patientid": {"type": "string", "description": "athenaOne patient identifier"},
    "firstname": {"type": "string"},
    "lastname": {"type": "string"},
    "dob": {"type": "string", "format": "date"},
    "sex": {"type": "string", "enum": ["M", "F", "U"]},
    "homephone": {"type": "string"},
    "mobilephone": {"type": "string"},
    "email": {"type": "string", "format": "email"},
    "address1": {"type": "string"},
    "address2": {"type": "string"},
    "city": {"type": "string"},
    "state": {"type": "string"},
    "zip": {"type": "string"},
    "departmentid": {"type": "integer"},
    "race": {"type": "array", "items": {"type": "string"}},
    "ethnicity": {"type": "string"},
    "language6392code": {"type": "string"},
    "primaryproviderid": {"type": "integer"},
    "registrationdate": {"type": "string", "format": "date"},
    "status": {"type": "string"}
  }
}