Image Provenance

Provenance requests and examples

Terminology Bindings

Terminology Detail
Provenance.agent.type The participation the agent had with respect to the activity.

Parameters

Parameter Is Required Description
identifier Yes The logical resource ID associated with the resource.

Requests

Provenance by identifier

GET: 'https://api.practicestudio.net/patientportal/fhir/Provenance/{Resource_ID}'

Example Response

Example Provenance JSON Response:


{
  "resourceType": "Provenance",
  "id": "000034",
  "meta": {
    "lastUpdated": "0001-01-01T00:00:00-06:00",
    "profile": [
      "http://hl7.org/fhir/us/core/StructureDefinition/us-core-provenance"
    ]
  },
  "target": [
    {
      "reference": "Provenance/000034"
    }
  ],
  "recorded": "2011-06-10T09:41:26.543-05:00",
  "reason": [
    {
      "coding": [
        {
          "system": "http://terminology.hl7.org/CodeSystem/v3-ActReason",
          "code": "RECORDMGT",
          "display": "records management",
          "userSelected": false
        }
      ]
    }
  ],
  "agent": [
    {
      "type": {
        "coding": [
          {
            "system": "http://terminology.hl7.org/CodeSystem/provenance-participant-type",
            "code": "author",
            "display": "Author",
            "userSelected": false
          }
        ]
      },
      "who": {
        "reference": "Practitioner/10000001",
        "display": "Sarah Johnson MD"
      },
      "onBehalfOf": {
        "reference": "Organization/10000001",
        "display": "Baxter Clinic"
      }
    },
    {
      "type": {
        "coding": [
          {
            "system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-provenance-participant-type",
            "code": "transmitter",
            "display": "Transmitter",
            "userSelected": false
          }
        ]
      },
      "who": {
        "reference": "Practitioner/10000001",
        "display": "Sarah Johnson MD"
      },
      "onBehalfOf": {
        "reference": "Organization/10000001",
        "display": "Baxter Clinic"
      }
    }
  ]
}