FHIR JSON Validator

Client-side validation of FHIR JSON resources. Identifies structure and syntax errors instantly.

Valid JSON Structure (Patient)

{
  "resourceType": "Patient",
  "id": "example",
  "active": true,
  "name": [
    {
      "use": "official",
      "family": "Chalmers",
      "given": [
        "Peter",
        "James"
      ]
    }
  ],
  "gender": "male",
  "birthDate": "1974-12-25"
}