Result

The consent evaluation result for a single `data_id`.

HealthcareFHIRHL7v2DICOMMedical ImagingDe-identificationInteroperabilityCloud

Properties

Name Type Description
consentDetails object The resource names of all evaluated Consents mapped to their evaluation.
consented boolean Whether the resource is consented for the given use.
dataId string The unique identifier of the evaluated resource.
View JSON Schema on GitHub

JSON Schema

Result.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Result",
  "description": "The consent evaluation result for a single `data_id`.",
  "properties": {
    "consentDetails": {
      "additionalProperties": {
        "$ref": "#/components/schemas/ConsentEvaluation"
      },
      "description": "The resource names of all evaluated Consents mapped to their evaluation.",
      "type": "object"
    },
    "consented": {
      "description": "Whether the resource is consented for the given use.",
      "type": "boolean"
    },
    "dataId": {
      "description": "The unique identifier of the evaluated resource.",
      "type": "string"
    }
  },
  "type": "object"
}