getDatasetSchema

@GET(value = "api/v2/depots/{depot}/collections/{collection}/datasets/{dataset}/schema")
abstract fun getDatasetSchema(@Path(value = "depot") depot: String, @Path(value = "collection") collection: String, @Path(value = "dataset") dataset: String, @Header(value = "dataos-correlation-id") correlationId: String = UUID.randomUUID().toString()): Call<String>

Retrieves the schema of a dataset.

Return

A Call object with a String response.

Parameters

depot

The depot name.

collection

The collection name.

dataset

The dataset name.

correlationId

(Optional) The correlation ID for tracking requests.