HRSA 2023 Uniform Data System (UDS) Patient Level Submission (PLS) (UDS+) FHIR IG
1.1.0 - STU1 Release 1.1 - Standard for Trial-Use International flag

HRSA 2023 Uniform Data System (UDS) Patient Level Submission (PLS) (UDS+) FHIR IG, published by HRSA BPHC. This guide is not an authorized publication; it is the continuous build for version 1.1.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/drajer-health/uds-plus/ and changes regularly. See the Directory of published versions

: Uds Plus Procedure Example - JSON Representation

Page standards status: Informative

Raw json | Download


{
  "resourceType" : "Procedure",
  "id" : "de-identified-example",
  "meta" : {
    "profile" : [
      🔗 "http://fhir.org/guides/hrsa/uds-plus/StructureDefinition/uds-plus-procedure"
    ]
  },
  "extension" : [
    {
      "url" : "http://fhir.org/guides/hrsa/uds-plus/StructureDefinition/uds-plus-recordedDate-extension",
      "valueDateTime" : "2005"
    }
  ],
  "status" : "completed",
  "code" : {
    "coding" : [
      {
        "system" : "http://snomed.info/sct",
        "code" : "48387007",
        "display" : "Tracheotomy"
      }
    ]
  },
  "subject" : {
    🔗 "reference" : "Patient/de-identified-example"
  },
  "encounter" : {
    🔗 "reference" : "Encounter/de-identified-example"
  },
  "performedDateTime" : "2005",
  "performer" : [
    {
      "actor" : {
        🔗 "reference" : "Practitioner/example"
      }
    }
  ],
  "bodySite" : [
    {
      "coding" : [
        {
          "system" : "http://snomed.info/sct",
          "code" : "44567001",
          "display" : "Tracheal structure"
        }
      ]
    }
  ]
}