DataHub · Schema

BatchGetRequest

A request to fetch a specific entity and its aspects in a batch operation.

Data CatalogData DiscoveryData GovernanceData LineageMetadata

Properties

Name Type Description
urn string The URN of the entity to fetch.
aspectNames array Specific aspects to retrieve. If not provided, all aspects are returned.
View JSON Schema on GitHub

JSON Schema

datahub-batchgetrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BatchGetRequest",
  "title": "BatchGetRequest",
  "type": "object",
  "description": "A request to fetch a specific entity and its aspects in a batch operation.",
  "required": [
    "urn"
  ],
  "properties": {
    "urn": {
      "type": "string",
      "description": "The URN of the entity to fetch.",
      "example": "urn:li:dataset:(urn:li:dataPlatform:hive,SampleHiveDataset,PROD)"
    },
    "aspectNames": {
      "type": "array",
      "description": "Specific aspects to retrieve. If not provided, all aspects are returned.",
      "items": {
        "type": "string"
      }
    }
  }
}