ListDatasetsResponse

Lists the available datasets.

HealthcareFHIRHL7v2DICOMMedical ImagingDe-identificationInteroperabilityCloud

Properties

Name Type Description
datasets array The first page of datasets.
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

ListDatasetsResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ListDatasetsResponse",
  "description": "Lists the available datasets.",
  "properties": {
    "datasets": {
      "description": "The first page of datasets.",
      "items": {
        "$ref": "#/components/schemas/Dataset"
      },
      "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"
}