Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Recursos

Patient

{
  "resourceType": "Patient",
  "id": "example",
  "identifier": [],
  "active": true,
  "name": [],
  "telecom": [],
  "gender": "male",
  "birthDate": "1974-12-25",
  "deceasedBoolean": false,
  "address": [],
  "contact": []
}

Practitioner

{
  "resourceType": "Practitioner",
  "id": "example",
  "identifier": [
    {
      "system": "http://www.acme.org/practitioners",
      "value": "23"
    }
  ],
  "active": true,
  "name": [
    {
      "family": "Careful",
      "given": [
        "Adam"
      ],
      "prefix": [
        "Dr"
      ]
    }
  ],
  "address": [
    {
      "use": "home",
      "line": [
        "534 Erewhon St"
      ],
      "city": "PleasantVille",
      "state": "Vic",
      "postalCode": "3999"
    }
  ],
  "qualification": [
    {
      "identifier": [
        {
          "system": "http://example.org/UniversityIdentifier",
          "value": "12345"
        }
      ],
      "code": {
        "coding": [
          {
            "system": "http://terminology.hl7.org/CodeSystem/v2-0360/2.7",
            "code": "BS",
            "display": "Bachelor of Science"
          }
        ],
        "text": "Bachelor of Science"
      },
      "period": {
        "start": "1995"
      },
      "issuer": {
        "display": "Example University"
      }
    }
  ]
}

Observation

{
  "resourceType": "Observation",
  "status": "final",
  "code": {
        "coding": []
  },
  "subject": {
    "reference": "Patient/<id>"
  },
  "performer": [
    {
      "reference": "Practitioner/<id>"
    }
  ],
 "interpretation": []
}

  • No labels