ListDicomStoresResponse

Lists the DICOM stores in the given dataset.

HealthcareFHIRHL7v2DICOMMedical ImagingDe-identificationInteroperabilityCloud

Properties

Name Type Description
dicomStores array The returned DICOM stores. Won't be more DICOM stores than the value of page_size in the request.
nextPageToken string Token to retrieve the next page of results or empty if there are no more results in the list.
View JSON Schema on GitHub

JSON Schema

ListDicomStoresResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ListDicomStoresResponse",
  "description": "Lists the DICOM stores in the given dataset.",
  "properties": {
    "dicomStores": {
      "description": "The returned DICOM stores. Won't be more DICOM stores than the value of page_size in the request.",
      "items": {
        "$ref": "#/components/schemas/DicomStore"
      },
      "type": "array"
    },
    "nextPageToken": {
      "description": "Token to retrieve the next page of results or empty if there are no more results in the list.",
      "type": "string"
    }
  },
  "type": "object"
}