Heidi Health · Schema

HeidiPatientProfile

Longitudinal patient record linked to one or more Heidi sessions.

HealthcareHealth TechAI Medical ScribeAmbient AIClinical DocumentationClinical Decision SupportArtificial IntelligenceSpeech To TextTranscriptionEHR IntegrationElectronic Health RecordsTelehealthClinical CodingICD-10SNOMEDHIPAAGDPRSOC 2ISO 27001ISO 42001WearablesVoiceAudioAustraliaMelbourne

Properties

Name Type Description
id string
first_name string
last_name string
date_of_birth string
gender string
ehr_patient_id stringnull
provider stringnull
created_at string
updated_at string
View JSON Schema on GitHub

JSON Schema

heidi-health-patient-profile-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/heidi-health/main/json-schema/heidi-health-patient-profile-schema.json",
  "title": "HeidiPatientProfile",
  "description": "Longitudinal patient record linked to one or more Heidi sessions.",
  "type": "object",
  "required": ["id"],
  "properties": {
    "id": { "type": "string" },
    "first_name": { "type": "string" },
    "last_name": { "type": "string" },
    "date_of_birth": { "type": "string", "format": "date" },
    "gender": { "type": "string" },
    "ehr_patient_id": { "type": ["string", "null"] },
    "provider": { "type": ["string", "null"] },
    "created_at": { "type": "string", "format": "date-time" },
    "updated_at": { "type": "string", "format": "date-time" }
  },
  "additionalProperties": true
}