medflow-terminology

Patient - Age Group

This is the age group when used with a FHIR Patient resource.

http://terminology.medflow.care/1.0/Patient/age-group

[
  {
    "id": 1,
    "display": "Child",
    "code": "child",
    "definition": "A patient who is 0-12 years old."
  },
  {
    "id": 2,
    "display": "Teen",
    "code": "teen",
    "definition": "A patient who is 13-17 years old."
  },
  {
    "id": 3,
    "display": "Adult",
    "code": "adult",
    "definition": "A patient who is 18-64 years old."
  },
  {
    "id": 4,
    "display": "Elder",
    "code": "elder",
    "definition": "A patient who is 65 years old or older."
  }
]

Example Usage

{
  "resourceType": "Patient",
  "extension": [
    {
      "url": "http://terminology.medflow.care/1.0/Patient/age-group",
      "valueCodeableConcept": {
        "coding": [
          {
            "system": "http://terminology.medflow.care/1.0/Patient/age-group",
            "code": "adult",
            "display": "Adult"
          }
        ],
        "text": "Adult"
      }
    }
  ],
  "identifier": [
    {
      "system": "http://example.org/anonymous",
      "value": "12345"
    }
  ],
  "active": true,
  "name": [
    {
      "use": "official",
      "family": "Smith",
      "given": ["John"]
    }
  ],
  "gender": "male",
  "birthDate": "1980-01-01"
}