Google Cloud Healthcare · Schema
DeidentifyDicomStoreRequest
Creates a new DICOM store with sensitive information de-identified.
HealthcareFHIRHL7v2DICOMMedical ImagingDe-identificationInteroperabilityCloud
Properties
| Name | Type | Description |
|---|---|---|
| config | object | Deidentify configuration. Only one of `config` and `gcs_config_uri` can be specified. |
| destinationStore | string | Required. The name of the DICOM store to create and write the redacted data to. For example, `projects/{project_id}/locations/{location_id}/datasets/{dataset_id}/dicomStores/{dicom_store_id}`. * The d |
| filterConfig | object | Filter configuration. |
| gcsConfigUri | string | Cloud Storage location to read the JSON cloud.healthcare.deidentify.DeidentifyConfig from, overriding the default config. Must be of the form `gs://{bucket_id}/path/to/object`. The Cloud Storage locat |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "DeidentifyDicomStoreRequest",
"description": "Creates a new DICOM store with sensitive information de-identified.",
"properties": {
"config": {
"$ref": "#/components/schemas/DeidentifyConfig",
"description": "Deidentify configuration. Only one of `config` and `gcs_config_uri` can be specified."
},
"destinationStore": {
"description": "Required. The name of the DICOM store to create and write the redacted data to. For example, `projects/{project_id}/locations/{location_id}/datasets/{dataset_id}/dicomStores/{dicom_store_id}`. * The destination dataset must exist. * The source dataset and destination dataset must both reside in the same location. De-identifying data across multiple locations is not supported. * The destination DICOM store must not exist. * The caller must have the necessary permissions to create the destination DICOM store.",
"type": "string"
},
"filterConfig": {
"$ref": "#/components/schemas/DicomFilterConfig",
"description": "Filter configuration."
},
"gcsConfigUri": {
"description": "Cloud Storage location to read the JSON cloud.healthcare.deidentify.DeidentifyConfig from, overriding the default config. Must be of the form `gs://{bucket_id}/path/to/object`. The Cloud Storage location must grant the Cloud IAM role `roles/storage.objectViewer` to the project's Cloud Healthcare Service Agent service account. Only one of `config` and `gcs_config_uri` can be specified.",
"type": "string"
}
},
"type": "object"
}