FHIR © HL7.org  |  FHIRsmith 4.0.1  |  Server Home  |  XIG Home  |  XIG Stats  | 

FHIR IG analytics

Packagequalitype.fhir.samples
Resource TypeServiceRequest
IdServiceRequest-servicerequest-example-create.json
FHIR VersionR4

Resources that use this resource

No resources found


Resources that this resource uses

No resources found


Narrative

No narrative content found in resource


Source1

{
  "resourceType": "ServiceRequest",
  "id": "servicerequest-example-create",
  "contained": [
    {
      "resourceType": "Patient",
      "id": "patient-example-create",
      "identifier": [
        {
          "system": "http://www.acme.com/fhir/NamingSystem/patient-identifier",
          "value": "patient-extern-123"
        }
      ]
    },
    {
      "resourceType": "Condition",
      "id": "condition-example-create",
      "code": {
        "coding": [
          {
            "code": "DIAGNOSIS-1",
            "system": "http://www.qualitype.de/samples/fhir/CodeSystem/diagnoses"
          }
        ]
      },
      "subject": {
        "reference": "#patient-example-create"
      }
    },
    {
      "resourceType": "Medication",
      "id": "medication-example-create",
      "code": {
        "coding": [
          {
            "code": "MEDIKATION-1",
            "system": "http://www.qualitype.de/samples/fhir/CodeSystem/medications"
          }
        ]
      }
    },
    {
      "resourceType": "Specimen",
      "id": "specimen-example-create",
      "identifier": [
        {
          "system": "http://www.acme.com/fhir/NamingSystem/specimen-identifier",
          "value": "sample-extern-123"
        }
      ],
      "type": {
        "coding": [
          {
            "code": "SAMPLETYPE-1",
            "system": "http://www.qualitype.de/samples/fhir/CodeSystem/sampletypes"
          }
        ]
      },
      "collection": {
        "collectedDateTime": "2023-07-01T12:00:00+00:00"
      },
      "container": [
        {
          "specimenQuantity": {
            "value": 10,
            "code": "mL",
            "system": "http://www.qualitype.de/samples/fhir/CodeSystem/units"
          }
        }
      ]
    }
  ],
  "extension": [
    {
      "url": "http://www.qualitype.de/samples/fhir/StructureDefinition/notification-url",
      "valueUrl": "http://www.acme.com/notifyme"
    }
  ],
  "identifier": [
    {
      "system": "http://www.acme.com/fhir/NamingSystem/servicerequest-identifier",
      "value": "order-extern-123"
    }
  ],
  "status": "active",
  "intent": "order",
  "code": {
    "coding": [
      {
        "code": "GOAL-1",
        "system": "http://www.qualitype.de/samples/fhir/CodeSystem/goals"
      }
    ]
  },
  "subject": {
    "reference": "#patient-example-create"
  },
  "requester": {
    "reference": "Organization/acme"
  },
  "reasonCode": [
    {
      "coding": [
        {
          "code": "INDICATION-1",
          "system": "http://www.qualitype.de/samples/fhir/CodeSystem/indications"
        }
      ]
    }
  ],
  "supportingInfo": [
    {
      "reference": "#condition-example-create"
    },
    {
      "reference": "#medication-example-create"
    }
  ],
  "specimen": [
    {
      "reference": "#specimen-example-create"
    }
  ]
}