Exposure Tile object schema
Exposure health tiles distill data health signals for data consumers and can be embedded in downstream tools. You can query information on these tiles from the Discovery API.
The Example query illustrates a few fields you can query with the exposureTile
object. Refer to Fields to view the entire schema, which provides all possible fields you can query.
Arguments
When querying for exposureTile
, you can use the following arguments:
Fetching data...
Example query
You can specify the environmentId
and filter by a model's uniqueId
to understand the data quality and metadata information for the exposure tile associated with the customers
model in the marketing
package:
query {
environment(id: 834) {
applied {
exposureTile(
filter: {uniqueId: "model.marketing.customers"} # Use this format for unique ID: RESOURCE_TYPE.PACKAGE_NAME.RESOURCE_NAME
) {
accountId # The account ID of this node
environmentId
projectId
exposureType
filePath
quality
}
}
}
}
Fields
When querying for exposureTile
, you can use the following fields:
Fetching data...
Was this page helpful?
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.