2021-05-11 17:55:45 -07:00
|
|
|
fragment globalTagsFields on GlobalTags {
|
|
|
|
tags {
|
|
|
|
tag {
|
|
|
|
urn
|
2022-08-31 20:48:32 -07:00
|
|
|
type
|
2021-05-11 17:55:45 -07:00
|
|
|
name
|
|
|
|
description
|
2022-02-24 22:03:00 +05:30
|
|
|
properties {
|
2023-04-10 15:17:25 -07:00
|
|
|
name
|
2022-02-24 22:03:00 +05:30
|
|
|
colorHex
|
|
|
|
}
|
2021-05-11 17:55:45 -07:00
|
|
|
}
|
2022-07-14 14:23:12 -07:00
|
|
|
associatedUrn
|
2021-05-11 17:55:45 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-30 00:26:07 -04:00
|
|
|
fragment glossaryNode on GlossaryNode {
|
|
|
|
urn
|
|
|
|
type
|
|
|
|
properties {
|
|
|
|
name
|
|
|
|
}
|
2022-10-14 16:40:52 -04:00
|
|
|
children: relationships(input: { types: ["IsPartOf"], direction: INCOMING, start: 0, count: 10000 }) {
|
|
|
|
total
|
2022-07-08 09:19:50 -07:00
|
|
|
}
|
2022-05-30 00:26:07 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
fragment glossaryTerm on GlossaryTerm {
|
|
|
|
urn
|
|
|
|
name
|
|
|
|
type
|
|
|
|
hierarchicalName
|
|
|
|
properties {
|
|
|
|
name
|
2022-08-31 20:48:32 -07:00
|
|
|
description
|
2022-05-30 00:26:07 -04:00
|
|
|
definition
|
|
|
|
termSource
|
2022-08-31 20:48:32 -07:00
|
|
|
customProperties {
|
|
|
|
key
|
|
|
|
value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ownership {
|
|
|
|
...ownershipFields
|
|
|
|
}
|
|
|
|
parentNodes {
|
|
|
|
...parentNodesFields
|
2022-05-30 00:26:07 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-18 07:49:42 +05:30
|
|
|
fragment glossaryTerms on GlossaryTerms {
|
|
|
|
terms {
|
|
|
|
term {
|
2022-05-30 00:26:07 -04:00
|
|
|
...glossaryTerm
|
2021-05-18 07:49:42 +05:30
|
|
|
}
|
2022-07-14 14:23:12 -07:00
|
|
|
associatedUrn
|
2021-05-18 07:49:42 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-07 19:17:24 -07:00
|
|
|
fragment deprecationFields on Deprecation {
|
|
|
|
actor
|
|
|
|
deprecated
|
|
|
|
note
|
|
|
|
decommissionTime
|
|
|
|
}
|
|
|
|
|
2022-05-13 00:17:19 -04:00
|
|
|
fragment parentContainersFields on ParentContainersResult {
|
|
|
|
count
|
|
|
|
containers {
|
2023-03-27 12:45:38 -04:00
|
|
|
...parentContainerFields
|
2022-05-13 00:17:19 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-30 00:26:07 -04:00
|
|
|
fragment parentNodesFields on ParentNodesResult {
|
|
|
|
count
|
|
|
|
nodes {
|
2022-11-15 18:19:23 -05:00
|
|
|
urn
|
|
|
|
type
|
|
|
|
properties {
|
|
|
|
name
|
|
|
|
}
|
2022-05-30 00:26:07 -04:00
|
|
|
}
|
|
|
|
}
|
2022-05-13 00:17:19 -04:00
|
|
|
|
2023-09-18 16:14:33 -04:00
|
|
|
fragment parentDomainsFields on ParentDomainsResult {
|
|
|
|
count
|
|
|
|
domains {
|
|
|
|
urn
|
|
|
|
type
|
|
|
|
... on Domain {
|
|
|
|
properties {
|
|
|
|
name
|
|
|
|
description
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-21 12:06:31 -07:00
|
|
|
fragment ownershipFields on Ownership {
|
|
|
|
owners {
|
|
|
|
owner {
|
2021-05-11 17:55:45 -07:00
|
|
|
... on CorpUser {
|
|
|
|
urn
|
|
|
|
type
|
|
|
|
username
|
|
|
|
info {
|
|
|
|
active
|
|
|
|
displayName
|
|
|
|
title
|
|
|
|
email
|
|
|
|
firstName
|
|
|
|
lastName
|
|
|
|
fullName
|
|
|
|
}
|
2022-03-07 14:30:00 -08:00
|
|
|
properties {
|
|
|
|
active
|
|
|
|
displayName
|
|
|
|
title
|
|
|
|
email
|
|
|
|
firstName
|
|
|
|
lastName
|
|
|
|
fullName
|
|
|
|
}
|
2022-02-17 18:48:29 -08:00
|
|
|
editableProperties {
|
|
|
|
displayName
|
|
|
|
title
|
2021-05-11 17:55:45 -07:00
|
|
|
pictureLink
|
2022-03-07 14:30:00 -08:00
|
|
|
email
|
2021-05-11 17:55:45 -07:00
|
|
|
}
|
2021-04-21 12:06:31 -07:00
|
|
|
}
|
2021-05-11 17:55:45 -07:00
|
|
|
... on CorpGroup {
|
|
|
|
urn
|
|
|
|
type
|
|
|
|
name
|
2022-03-07 14:30:00 -08:00
|
|
|
properties {
|
|
|
|
displayName
|
|
|
|
email
|
|
|
|
}
|
2021-05-11 17:55:45 -07:00
|
|
|
info {
|
2022-01-27 00:07:56 +01:00
|
|
|
displayName
|
2021-05-11 17:55:45 -07:00
|
|
|
email
|
|
|
|
admins {
|
|
|
|
urn
|
|
|
|
username
|
|
|
|
info {
|
|
|
|
active
|
|
|
|
displayName
|
|
|
|
title
|
|
|
|
email
|
|
|
|
firstName
|
|
|
|
lastName
|
|
|
|
fullName
|
|
|
|
}
|
|
|
|
editableInfo {
|
|
|
|
pictureLink
|
|
|
|
teams
|
|
|
|
skills
|
|
|
|
}
|
|
|
|
}
|
|
|
|
members {
|
|
|
|
urn
|
|
|
|
username
|
|
|
|
info {
|
|
|
|
active
|
|
|
|
displayName
|
|
|
|
title
|
|
|
|
email
|
|
|
|
firstName
|
|
|
|
lastName
|
|
|
|
fullName
|
|
|
|
}
|
|
|
|
editableInfo {
|
|
|
|
pictureLink
|
|
|
|
teams
|
|
|
|
skills
|
|
|
|
}
|
|
|
|
}
|
|
|
|
groups
|
|
|
|
}
|
2021-04-21 12:06:31 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
type
|
2023-05-26 17:54:09 +01:00
|
|
|
ownershipType {
|
|
|
|
urn
|
|
|
|
type
|
|
|
|
info {
|
|
|
|
name
|
|
|
|
description
|
|
|
|
}
|
|
|
|
status {
|
|
|
|
removed
|
|
|
|
}
|
|
|
|
}
|
2022-07-14 14:23:12 -07:00
|
|
|
associatedUrn
|
2021-04-21 12:06:31 -07:00
|
|
|
}
|
|
|
|
lastModified {
|
|
|
|
time
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-03 15:40:39 -08:00
|
|
|
fragment embedFields on Embed {
|
|
|
|
renderUrl
|
|
|
|
}
|
|
|
|
|
2024-11-25 09:49:16 -05:00
|
|
|
fragment resolvedActorFields on ResolvedActor {
|
|
|
|
... on CorpUser {
|
|
|
|
urn
|
|
|
|
...entityDisplayNameFields
|
|
|
|
}
|
|
|
|
... on CorpGroup {
|
|
|
|
urn
|
|
|
|
...entityDisplayNameFields
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-02 13:51:39 -08:00
|
|
|
fragment institutionalMemoryFields on InstitutionalMemory {
|
|
|
|
elements {
|
|
|
|
url
|
2024-11-25 09:49:16 -05:00
|
|
|
actor {
|
|
|
|
...resolvedActorFields
|
2022-02-02 13:51:39 -08:00
|
|
|
}
|
|
|
|
description
|
|
|
|
created {
|
|
|
|
actor
|
|
|
|
time
|
|
|
|
}
|
2023-06-28 13:42:26 -07:00
|
|
|
associatedUrn
|
2022-02-02 13:51:39 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-21 12:06:31 -07:00
|
|
|
fragment nonRecursiveDatasetFields on Dataset {
|
|
|
|
urn
|
|
|
|
name
|
|
|
|
type
|
|
|
|
origin
|
|
|
|
uri
|
2022-08-11 20:27:16 -04:00
|
|
|
lastIngested
|
2021-04-21 12:06:31 -07:00
|
|
|
platform {
|
2022-01-25 21:03:31 -06:00
|
|
|
...platformFields
|
2021-04-21 12:06:31 -07:00
|
|
|
}
|
2022-05-09 17:28:50 -04:00
|
|
|
dataPlatformInstance {
|
|
|
|
...dataPlatformInstanceFields
|
|
|
|
}
|
2021-04-21 12:06:31 -07:00
|
|
|
platformNativeType
|
|
|
|
properties {
|
2022-03-05 01:22:04 +05:30
|
|
|
name
|
2021-11-08 16:24:50 -08:00
|
|
|
description
|
2021-09-22 17:30:15 -07:00
|
|
|
customProperties {
|
|
|
|
key
|
|
|
|
value
|
|
|
|
}
|
2021-10-06 07:13:38 -07:00
|
|
|
externalUrl
|
2023-12-06 15:21:56 -05:00
|
|
|
lastModified {
|
|
|
|
time
|
|
|
|
actor
|
|
|
|
}
|
2021-04-21 12:06:31 -07:00
|
|
|
}
|
2024-01-25 10:12:01 -05:00
|
|
|
structuredProperties {
|
|
|
|
properties {
|
|
|
|
...structuredPropertiesFields
|
|
|
|
}
|
|
|
|
}
|
2021-06-17 06:48:27 +08:00
|
|
|
editableProperties {
|
2024-08-09 11:02:17 -05:00
|
|
|
name
|
2021-06-17 06:48:27 +08:00
|
|
|
description
|
|
|
|
}
|
2021-04-21 12:06:31 -07:00
|
|
|
ownership {
|
|
|
|
...ownershipFields
|
|
|
|
}
|
|
|
|
institutionalMemory {
|
2022-02-02 13:51:39 -08:00
|
|
|
...institutionalMemoryFields
|
2021-04-21 12:06:31 -07:00
|
|
|
}
|
|
|
|
globalTags {
|
|
|
|
...globalTagsFields
|
|
|
|
}
|
2021-05-18 07:49:42 +05:30
|
|
|
glossaryTerms {
|
|
|
|
...glossaryTerms
|
|
|
|
}
|
2021-10-06 23:39:52 -07:00
|
|
|
subTypes {
|
|
|
|
typeNames
|
|
|
|
}
|
2022-01-27 22:02:41 -08:00
|
|
|
domain {
|
|
|
|
...entityDomain
|
|
|
|
}
|
2023-05-17 00:17:25 -07:00
|
|
|
...entityDataProduct
|
2022-02-02 13:51:39 -08:00
|
|
|
container {
|
|
|
|
...entityContainer
|
|
|
|
}
|
2022-04-07 19:17:24 -07:00
|
|
|
deprecation {
|
|
|
|
...deprecationFields
|
|
|
|
}
|
2023-01-03 15:40:39 -08:00
|
|
|
embed {
|
|
|
|
...embedFields
|
|
|
|
}
|
2023-06-21 04:10:07 -04:00
|
|
|
browsePathV2 {
|
|
|
|
...browsePathV2Fields
|
|
|
|
}
|
2021-04-21 12:06:31 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
fragment nonRecursiveDataFlowFields on DataFlow {
|
|
|
|
urn
|
|
|
|
type
|
|
|
|
orchestrator
|
|
|
|
flowId
|
|
|
|
cluster
|
2021-11-08 16:24:50 -08:00
|
|
|
properties {
|
2021-04-21 12:06:31 -07:00
|
|
|
name
|
|
|
|
description
|
|
|
|
project
|
2021-04-23 00:18:39 -07:00
|
|
|
externalUrl
|
|
|
|
customProperties {
|
|
|
|
key
|
|
|
|
value
|
|
|
|
}
|
2021-04-21 12:06:31 -07:00
|
|
|
}
|
2021-06-17 06:48:27 +08:00
|
|
|
editableProperties {
|
|
|
|
description
|
|
|
|
}
|
2021-04-21 12:06:31 -07:00
|
|
|
ownership {
|
|
|
|
...ownershipFields
|
|
|
|
}
|
2022-01-25 21:03:31 -06:00
|
|
|
platform {
|
|
|
|
...platformFields
|
|
|
|
}
|
2022-01-27 22:02:41 -08:00
|
|
|
domain {
|
|
|
|
...entityDomain
|
|
|
|
}
|
2023-05-17 00:17:25 -07:00
|
|
|
...entityDataProduct
|
2022-04-07 19:17:24 -07:00
|
|
|
deprecation {
|
|
|
|
...deprecationFields
|
|
|
|
}
|
2021-04-21 12:06:31 -07:00
|
|
|
}
|
|
|
|
|
2021-05-26 09:58:43 +08:00
|
|
|
fragment nonRecursiveDataJobFields on DataJob {
|
|
|
|
urn
|
2021-11-08 16:24:50 -08:00
|
|
|
properties {
|
2021-05-26 09:58:43 +08:00
|
|
|
name
|
|
|
|
description
|
|
|
|
externalUrl
|
|
|
|
customProperties {
|
|
|
|
key
|
|
|
|
value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
globalTags {
|
|
|
|
...globalTagsFields
|
|
|
|
}
|
2022-01-27 22:02:41 -08:00
|
|
|
domain {
|
|
|
|
...entityDomain
|
|
|
|
}
|
2023-05-17 00:17:25 -07:00
|
|
|
...entityDataProduct
|
2022-04-07 19:17:24 -07:00
|
|
|
deprecation {
|
|
|
|
...deprecationFields
|
|
|
|
}
|
2023-12-01 15:53:01 -08:00
|
|
|
subTypes {
|
|
|
|
typeNames
|
|
|
|
}
|
2021-05-26 09:58:43 +08:00
|
|
|
}
|
|
|
|
|
2021-04-23 00:18:39 -07:00
|
|
|
fragment dataJobFields on DataJob {
|
|
|
|
urn
|
|
|
|
type
|
2023-01-27 17:36:01 -05:00
|
|
|
exists
|
2022-08-11 20:27:16 -04:00
|
|
|
lastIngested
|
2021-04-23 00:18:39 -07:00
|
|
|
dataFlow {
|
|
|
|
...nonRecursiveDataFlowFields
|
|
|
|
}
|
|
|
|
jobId
|
|
|
|
ownership {
|
|
|
|
...ownershipFields
|
|
|
|
}
|
2021-11-08 16:24:50 -08:00
|
|
|
properties {
|
2021-04-23 00:18:39 -07:00
|
|
|
name
|
|
|
|
description
|
|
|
|
externalUrl
|
|
|
|
customProperties {
|
|
|
|
key
|
|
|
|
value
|
2021-04-21 12:06:31 -07:00
|
|
|
}
|
|
|
|
}
|
2021-06-17 06:48:27 +08:00
|
|
|
editableProperties {
|
|
|
|
description
|
|
|
|
}
|
2021-04-23 00:18:39 -07:00
|
|
|
globalTags {
|
|
|
|
...globalTagsFields
|
|
|
|
}
|
2021-09-28 10:30:37 -07:00
|
|
|
institutionalMemory {
|
2022-02-02 13:51:39 -08:00
|
|
|
...institutionalMemoryFields
|
2021-09-28 10:30:37 -07:00
|
|
|
}
|
|
|
|
glossaryTerms {
|
|
|
|
...glossaryTerms
|
|
|
|
}
|
2022-01-27 22:02:41 -08:00
|
|
|
domain {
|
|
|
|
...entityDomain
|
|
|
|
}
|
2023-05-17 00:17:25 -07:00
|
|
|
...entityDataProduct
|
2022-04-07 19:17:24 -07:00
|
|
|
deprecation {
|
|
|
|
...deprecationFields
|
|
|
|
}
|
2022-07-08 09:19:50 -07:00
|
|
|
status {
|
|
|
|
removed
|
|
|
|
}
|
2022-05-09 17:28:50 -04:00
|
|
|
dataPlatformInstance {
|
|
|
|
...dataPlatformInstanceFields
|
|
|
|
}
|
2025-01-10 10:52:57 +01:00
|
|
|
parentContainers {
|
|
|
|
...parentContainersFields
|
|
|
|
}
|
2022-12-20 10:54:08 -05:00
|
|
|
privileges {
|
|
|
|
canEditLineage
|
|
|
|
}
|
2023-06-21 04:10:07 -04:00
|
|
|
browsePathV2 {
|
|
|
|
...browsePathV2Fields
|
|
|
|
}
|
2023-12-01 15:53:01 -08:00
|
|
|
subTypes {
|
|
|
|
typeNames
|
|
|
|
}
|
2024-02-14 09:06:21 -08:00
|
|
|
health {
|
|
|
|
...entityHealth
|
|
|
|
}
|
|
|
|
activeIncidents: incidents(start: 0, count: 1, state: ACTIVE) {
|
|
|
|
total
|
|
|
|
}
|
2021-04-21 12:06:31 -07:00
|
|
|
}
|
|
|
|
|
2021-04-23 00:18:39 -07:00
|
|
|
fragment dashboardFields on Dashboard {
|
|
|
|
urn
|
|
|
|
type
|
2023-01-27 17:36:01 -05:00
|
|
|
exists
|
2022-08-11 20:27:16 -04:00
|
|
|
lastIngested
|
2021-04-23 00:18:39 -07:00
|
|
|
tool
|
|
|
|
dashboardId
|
2021-11-08 16:24:50 -08:00
|
|
|
properties {
|
2021-04-23 00:18:39 -07:00
|
|
|
name
|
|
|
|
description
|
2021-04-27 20:26:09 +02:00
|
|
|
customProperties {
|
|
|
|
key
|
|
|
|
value
|
|
|
|
}
|
2021-04-23 00:18:39 -07:00
|
|
|
externalUrl
|
|
|
|
access
|
|
|
|
lastRefreshed
|
2021-04-21 12:06:31 -07:00
|
|
|
created {
|
|
|
|
time
|
|
|
|
}
|
2021-04-23 00:18:39 -07:00
|
|
|
lastModified {
|
|
|
|
time
|
|
|
|
}
|
|
|
|
}
|
2022-07-08 09:19:50 -07:00
|
|
|
editableProperties {
|
|
|
|
description
|
|
|
|
}
|
2021-04-23 00:18:39 -07:00
|
|
|
ownership {
|
|
|
|
...ownershipFields
|
|
|
|
}
|
|
|
|
globalTags {
|
|
|
|
...globalTagsFields
|
2021-04-21 12:06:31 -07:00
|
|
|
}
|
2021-09-28 10:30:37 -07:00
|
|
|
institutionalMemory {
|
2022-02-02 13:51:39 -08:00
|
|
|
...institutionalMemoryFields
|
2021-09-28 10:30:37 -07:00
|
|
|
}
|
|
|
|
glossaryTerms {
|
|
|
|
...glossaryTerms
|
|
|
|
}
|
2022-01-25 21:03:31 -06:00
|
|
|
platform {
|
|
|
|
...platformFields
|
|
|
|
}
|
2022-01-27 22:02:41 -08:00
|
|
|
domain {
|
|
|
|
...entityDomain
|
|
|
|
}
|
2023-05-17 00:17:25 -07:00
|
|
|
...entityDataProduct
|
2022-05-13 00:17:19 -04:00
|
|
|
parentContainers {
|
|
|
|
...parentContainersFields
|
|
|
|
}
|
2022-03-15 11:17:13 -07:00
|
|
|
status {
|
|
|
|
removed
|
|
|
|
}
|
2023-01-03 15:40:39 -08:00
|
|
|
embed {
|
|
|
|
...embedFields
|
|
|
|
}
|
2022-04-07 19:17:24 -07:00
|
|
|
deprecation {
|
|
|
|
...deprecationFields
|
|
|
|
}
|
2022-05-09 17:28:50 -04:00
|
|
|
dataPlatformInstance {
|
|
|
|
...dataPlatformInstanceFields
|
|
|
|
}
|
2023-06-21 04:10:07 -04:00
|
|
|
browsePathV2 {
|
|
|
|
...browsePathV2Fields
|
|
|
|
}
|
2022-07-19 15:46:43 -07:00
|
|
|
statsSummary {
|
|
|
|
viewCount
|
|
|
|
uniqueUserCountLast30Days
|
|
|
|
topUsersLast30Days {
|
|
|
|
urn
|
|
|
|
type
|
|
|
|
username
|
|
|
|
properties {
|
|
|
|
displayName
|
|
|
|
firstName
|
|
|
|
lastName
|
|
|
|
fullName
|
|
|
|
}
|
|
|
|
editableProperties {
|
|
|
|
displayName
|
|
|
|
pictureLink
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-08-31 20:48:32 -07:00
|
|
|
inputFields {
|
|
|
|
...inputFieldsFields
|
|
|
|
}
|
2022-09-19 08:03:38 +02:00
|
|
|
subTypes {
|
|
|
|
typeNames
|
|
|
|
}
|
2022-12-20 10:54:08 -05:00
|
|
|
privileges {
|
|
|
|
canEditLineage
|
2023-01-03 15:40:39 -08:00
|
|
|
canEditEmbed
|
2022-12-20 10:54:08 -05:00
|
|
|
}
|
2024-02-14 09:06:21 -08:00
|
|
|
health {
|
|
|
|
...entityHealth
|
|
|
|
}
|
2021-04-21 12:06:31 -07:00
|
|
|
}
|
2021-07-09 23:46:38 +08:00
|
|
|
|
2021-07-21 02:42:21 +08:00
|
|
|
fragment nonRecursiveMLFeature on MLFeature {
|
|
|
|
urn
|
|
|
|
type
|
2023-01-27 17:36:01 -05:00
|
|
|
exists
|
2022-08-11 20:27:16 -04:00
|
|
|
lastIngested
|
2021-07-21 02:42:21 +08:00
|
|
|
name
|
|
|
|
featureNamespace
|
|
|
|
description
|
|
|
|
dataType
|
2022-04-12 22:42:12 -07:00
|
|
|
properties {
|
2021-07-21 02:42:21 +08:00
|
|
|
description
|
|
|
|
dataType
|
|
|
|
version {
|
|
|
|
versionTag
|
|
|
|
}
|
|
|
|
sources {
|
|
|
|
urn
|
|
|
|
name
|
|
|
|
type
|
|
|
|
origin
|
|
|
|
description
|
|
|
|
uri
|
|
|
|
platform {
|
2022-01-25 21:03:31 -06:00
|
|
|
...platformFields
|
2021-07-21 02:42:21 +08:00
|
|
|
}
|
|
|
|
platformNativeType
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ownership {
|
|
|
|
...ownershipFields
|
|
|
|
}
|
|
|
|
institutionalMemory {
|
2022-02-02 13:51:39 -08:00
|
|
|
...institutionalMemoryFields
|
2021-07-21 02:42:21 +08:00
|
|
|
}
|
|
|
|
status {
|
|
|
|
removed
|
|
|
|
}
|
2022-04-12 22:42:12 -07:00
|
|
|
glossaryTerms {
|
|
|
|
...glossaryTerms
|
|
|
|
}
|
|
|
|
domain {
|
|
|
|
...entityDomain
|
|
|
|
}
|
2023-05-17 00:17:25 -07:00
|
|
|
...entityDataProduct
|
2022-04-12 22:42:12 -07:00
|
|
|
tags {
|
|
|
|
...globalTagsFields
|
|
|
|
}
|
|
|
|
editableProperties {
|
|
|
|
description
|
|
|
|
}
|
2022-04-07 19:17:24 -07:00
|
|
|
deprecation {
|
|
|
|
...deprecationFields
|
|
|
|
}
|
2022-05-09 17:28:50 -04:00
|
|
|
dataPlatformInstance {
|
|
|
|
...dataPlatformInstanceFields
|
|
|
|
}
|
2023-06-21 04:10:07 -04:00
|
|
|
browsePathV2 {
|
|
|
|
...browsePathV2Fields
|
|
|
|
}
|
2022-04-14 15:14:44 -07:00
|
|
|
featureTables: relationships(input: { types: ["Contains"], direction: INCOMING, start: 0, count: 100 }) {
|
|
|
|
relationships {
|
|
|
|
type
|
|
|
|
entity {
|
|
|
|
... on MLFeatureTable {
|
|
|
|
platform {
|
|
|
|
...platformFields
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-12-11 18:45:46 -05:00
|
|
|
structuredProperties {
|
|
|
|
properties {
|
|
|
|
...structuredPropertiesFields
|
|
|
|
}
|
|
|
|
}
|
2021-07-21 02:42:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
fragment nonRecursiveMLPrimaryKey on MLPrimaryKey {
|
|
|
|
urn
|
|
|
|
type
|
2023-01-27 17:36:01 -05:00
|
|
|
exists
|
2022-08-11 20:27:16 -04:00
|
|
|
lastIngested
|
2021-07-21 02:42:21 +08:00
|
|
|
name
|
|
|
|
featureNamespace
|
|
|
|
description
|
|
|
|
dataType
|
2022-04-12 22:42:12 -07:00
|
|
|
properties {
|
2021-07-21 02:42:21 +08:00
|
|
|
description
|
|
|
|
dataType
|
|
|
|
version {
|
|
|
|
versionTag
|
|
|
|
}
|
|
|
|
sources {
|
|
|
|
urn
|
|
|
|
name
|
|
|
|
type
|
|
|
|
origin
|
|
|
|
description
|
|
|
|
uri
|
|
|
|
platform {
|
2022-01-25 21:03:31 -06:00
|
|
|
...platformFields
|
2021-07-21 02:42:21 +08:00
|
|
|
}
|
|
|
|
platformNativeType
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ownership {
|
|
|
|
...ownershipFields
|
|
|
|
}
|
|
|
|
institutionalMemory {
|
2022-02-02 13:51:39 -08:00
|
|
|
...institutionalMemoryFields
|
2021-07-21 02:42:21 +08:00
|
|
|
}
|
|
|
|
status {
|
|
|
|
removed
|
|
|
|
}
|
2022-04-12 22:42:12 -07:00
|
|
|
glossaryTerms {
|
|
|
|
...glossaryTerms
|
|
|
|
}
|
|
|
|
domain {
|
|
|
|
...entityDomain
|
|
|
|
}
|
2023-05-17 00:17:25 -07:00
|
|
|
...entityDataProduct
|
2022-04-12 22:42:12 -07:00
|
|
|
tags {
|
|
|
|
...globalTagsFields
|
|
|
|
}
|
|
|
|
editableProperties {
|
|
|
|
description
|
|
|
|
}
|
2022-04-07 19:17:24 -07:00
|
|
|
deprecation {
|
|
|
|
...deprecationFields
|
|
|
|
}
|
2022-05-09 17:28:50 -04:00
|
|
|
dataPlatformInstance {
|
|
|
|
...dataPlatformInstanceFields
|
|
|
|
}
|
2022-04-14 15:14:44 -07:00
|
|
|
featureTables: relationships(input: { types: ["KeyedBy"], direction: INCOMING, start: 0, count: 100 }) {
|
|
|
|
relationships {
|
|
|
|
type
|
|
|
|
entity {
|
|
|
|
... on MLFeatureTable {
|
|
|
|
platform {
|
|
|
|
...platformFields
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-12-11 18:45:46 -05:00
|
|
|
structuredProperties {
|
|
|
|
properties {
|
|
|
|
...structuredPropertiesFields
|
|
|
|
}
|
|
|
|
}
|
2021-07-21 02:42:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
fragment nonRecursiveMLFeatureTable on MLFeatureTable {
|
|
|
|
urn
|
|
|
|
type
|
2023-01-27 17:36:01 -05:00
|
|
|
exists
|
2022-08-11 20:27:16 -04:00
|
|
|
lastIngested
|
2021-07-21 02:42:21 +08:00
|
|
|
name
|
|
|
|
platform {
|
2022-01-25 21:03:31 -06:00
|
|
|
...platformFields
|
2021-07-21 02:42:21 +08:00
|
|
|
}
|
2022-05-09 17:28:50 -04:00
|
|
|
dataPlatformInstance {
|
|
|
|
...dataPlatformInstanceFields
|
|
|
|
}
|
2021-07-21 02:42:21 +08:00
|
|
|
description
|
2022-04-12 22:42:12 -07:00
|
|
|
properties {
|
2021-07-21 02:42:21 +08:00
|
|
|
description
|
|
|
|
mlFeatures {
|
|
|
|
...nonRecursiveMLFeature
|
|
|
|
}
|
|
|
|
mlPrimaryKeys {
|
|
|
|
...nonRecursiveMLPrimaryKey
|
|
|
|
}
|
2022-04-21 19:30:49 +02:00
|
|
|
customProperties {
|
|
|
|
key
|
|
|
|
value
|
|
|
|
}
|
2021-07-21 02:42:21 +08:00
|
|
|
}
|
|
|
|
ownership {
|
|
|
|
...ownershipFields
|
|
|
|
}
|
|
|
|
institutionalMemory {
|
2022-02-02 13:51:39 -08:00
|
|
|
...institutionalMemoryFields
|
2021-07-21 02:42:21 +08:00
|
|
|
}
|
|
|
|
status {
|
|
|
|
removed
|
|
|
|
}
|
2022-04-12 22:42:12 -07:00
|
|
|
glossaryTerms {
|
|
|
|
...glossaryTerms
|
|
|
|
}
|
|
|
|
domain {
|
|
|
|
...entityDomain
|
|
|
|
}
|
2023-05-17 00:17:25 -07:00
|
|
|
...entityDataProduct
|
2022-04-12 22:42:12 -07:00
|
|
|
tags {
|
|
|
|
...globalTagsFields
|
|
|
|
}
|
|
|
|
editableProperties {
|
|
|
|
description
|
|
|
|
}
|
2022-04-07 19:17:24 -07:00
|
|
|
deprecation {
|
|
|
|
...deprecationFields
|
|
|
|
}
|
2023-06-21 04:10:07 -04:00
|
|
|
browsePathV2 {
|
|
|
|
...browsePathV2Fields
|
|
|
|
}
|
2024-12-11 18:45:46 -05:00
|
|
|
structuredProperties {
|
|
|
|
properties {
|
|
|
|
...structuredPropertiesFields
|
|
|
|
}
|
|
|
|
}
|
2021-07-21 02:42:21 +08:00
|
|
|
}
|
|
|
|
|
2022-08-31 20:48:32 -07:00
|
|
|
fragment schemaFieldFields on SchemaField {
|
|
|
|
fieldPath
|
|
|
|
label
|
|
|
|
jsonPath
|
|
|
|
nullable
|
|
|
|
description
|
|
|
|
type
|
|
|
|
nativeDataType
|
|
|
|
recursive
|
|
|
|
isPartOfKey
|
2023-08-02 12:23:27 +08:00
|
|
|
isPartitioningKey
|
2022-08-31 20:48:32 -07:00
|
|
|
globalTags {
|
|
|
|
...globalTagsFields
|
|
|
|
}
|
|
|
|
glossaryTerms {
|
|
|
|
...glossaryTerms
|
|
|
|
}
|
2024-01-25 10:12:01 -05:00
|
|
|
schemaFieldEntity {
|
|
|
|
urn
|
|
|
|
type
|
|
|
|
structuredProperties {
|
|
|
|
properties {
|
|
|
|
...structuredPropertiesFields
|
|
|
|
}
|
|
|
|
}
|
2024-04-16 04:49:21 +05:30
|
|
|
businessAttributes {
|
|
|
|
businessAttribute {
|
|
|
|
...businessAttribute
|
|
|
|
}
|
|
|
|
}
|
2024-07-30 09:45:57 -07:00
|
|
|
documentation {
|
|
|
|
documentations {
|
|
|
|
documentation
|
|
|
|
attribution {
|
|
|
|
time
|
|
|
|
actor {
|
|
|
|
urn
|
|
|
|
type
|
|
|
|
...entityDisplayNameFields
|
|
|
|
}
|
|
|
|
source {
|
|
|
|
urn
|
|
|
|
type
|
|
|
|
}
|
|
|
|
sourceDetail {
|
|
|
|
key
|
|
|
|
value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-01-25 10:12:01 -05:00
|
|
|
}
|
2022-08-31 20:48:32 -07:00
|
|
|
}
|
|
|
|
|
2021-07-09 23:46:38 +08:00
|
|
|
fragment schemaMetadataFields on SchemaMetadata {
|
|
|
|
aspectVersion
|
|
|
|
createdAt
|
|
|
|
datasetUrn
|
|
|
|
name
|
|
|
|
platformUrn
|
|
|
|
version
|
|
|
|
cluster
|
|
|
|
hash
|
|
|
|
platformSchema {
|
|
|
|
... on TableSchema {
|
|
|
|
schema
|
|
|
|
}
|
|
|
|
... on KeyValueSchema {
|
|
|
|
keySchema
|
|
|
|
valueSchema
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fields {
|
2022-08-31 20:48:32 -07:00
|
|
|
...schemaFieldFields
|
2021-07-09 23:46:38 +08:00
|
|
|
}
|
|
|
|
primaryKeys
|
2021-09-28 22:47:00 -07:00
|
|
|
foreignKeys {
|
|
|
|
name
|
|
|
|
sourceFields {
|
|
|
|
fieldPath
|
|
|
|
}
|
|
|
|
foreignFields {
|
|
|
|
fieldPath
|
|
|
|
}
|
|
|
|
foreignDataset {
|
|
|
|
urn
|
|
|
|
name
|
|
|
|
type
|
|
|
|
origin
|
|
|
|
uri
|
2021-11-08 16:24:50 -08:00
|
|
|
properties {
|
|
|
|
description
|
|
|
|
}
|
2021-09-28 22:47:00 -07:00
|
|
|
platform {
|
2022-01-25 21:03:31 -06:00
|
|
|
...platformFields
|
2021-09-28 22:47:00 -07:00
|
|
|
}
|
|
|
|
platformNativeType
|
|
|
|
ownership {
|
|
|
|
...ownershipFields
|
|
|
|
}
|
|
|
|
globalTags {
|
|
|
|
...globalTagsFields
|
|
|
|
}
|
|
|
|
glossaryTerms {
|
|
|
|
...glossaryTerms
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-07-09 23:46:38 +08:00
|
|
|
}
|
2021-07-28 20:39:05 -07:00
|
|
|
|
|
|
|
fragment nonRecursiveMLModel on MLModel {
|
|
|
|
urn
|
|
|
|
type
|
2023-01-27 17:36:01 -05:00
|
|
|
exists
|
2022-08-11 20:27:16 -04:00
|
|
|
lastIngested
|
2021-07-28 20:39:05 -07:00
|
|
|
name
|
|
|
|
description
|
|
|
|
origin
|
|
|
|
platform {
|
2022-01-25 21:03:31 -06:00
|
|
|
...platformFields
|
2021-07-28 20:39:05 -07:00
|
|
|
}
|
2022-05-09 17:28:50 -04:00
|
|
|
dataPlatformInstance {
|
|
|
|
...dataPlatformInstanceFields
|
|
|
|
}
|
2021-07-28 20:39:05 -07:00
|
|
|
ownership {
|
|
|
|
...ownershipFields
|
|
|
|
}
|
|
|
|
properties {
|
2025-01-14 07:57:10 +09:00
|
|
|
name
|
2021-07-28 20:39:05 -07:00
|
|
|
description
|
|
|
|
date
|
2025-01-14 07:57:10 +09:00
|
|
|
created {
|
|
|
|
time
|
|
|
|
actor
|
|
|
|
}
|
|
|
|
lastModified {
|
|
|
|
time
|
|
|
|
actor
|
|
|
|
}
|
2022-11-15 01:16:55 +01:00
|
|
|
externalUrl
|
2021-07-28 20:39:05 -07:00
|
|
|
version
|
|
|
|
type
|
|
|
|
trainingMetrics {
|
|
|
|
name
|
|
|
|
description
|
|
|
|
value
|
|
|
|
}
|
|
|
|
hyperParams {
|
|
|
|
name
|
|
|
|
description
|
|
|
|
value
|
|
|
|
}
|
|
|
|
mlFeatures
|
|
|
|
groups {
|
|
|
|
urn
|
|
|
|
name
|
|
|
|
description
|
|
|
|
}
|
|
|
|
customProperties {
|
|
|
|
key
|
|
|
|
value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
globalTags {
|
|
|
|
...globalTagsFields
|
|
|
|
}
|
2022-03-15 11:17:13 -07:00
|
|
|
status {
|
|
|
|
removed
|
|
|
|
}
|
2022-04-12 22:42:12 -07:00
|
|
|
glossaryTerms {
|
|
|
|
...glossaryTerms
|
|
|
|
}
|
|
|
|
domain {
|
|
|
|
...entityDomain
|
|
|
|
}
|
2023-05-17 00:17:25 -07:00
|
|
|
...entityDataProduct
|
2022-04-12 22:42:12 -07:00
|
|
|
tags {
|
|
|
|
...globalTagsFields
|
|
|
|
}
|
|
|
|
editableProperties {
|
|
|
|
description
|
|
|
|
}
|
2022-04-07 19:17:24 -07:00
|
|
|
deprecation {
|
|
|
|
...deprecationFields
|
|
|
|
}
|
2022-11-15 01:16:55 +01:00
|
|
|
institutionalMemory {
|
|
|
|
...institutionalMemoryFields
|
2023-01-03 15:40:39 -08:00
|
|
|
}
|
2023-06-21 04:10:07 -04:00
|
|
|
browsePathV2 {
|
|
|
|
...browsePathV2Fields
|
|
|
|
}
|
2021-07-28 20:39:05 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
fragment nonRecursiveMLModelGroupFields on MLModelGroup {
|
|
|
|
urn
|
|
|
|
type
|
2023-01-27 17:36:01 -05:00
|
|
|
exists
|
2022-08-11 20:27:16 -04:00
|
|
|
lastIngested
|
2021-07-28 20:39:05 -07:00
|
|
|
name
|
|
|
|
description
|
|
|
|
origin
|
|
|
|
platform {
|
2022-01-25 21:03:31 -06:00
|
|
|
...platformFields
|
2021-07-28 20:39:05 -07:00
|
|
|
}
|
2022-05-09 17:28:50 -04:00
|
|
|
dataPlatformInstance {
|
|
|
|
...dataPlatformInstanceFields
|
|
|
|
}
|
2021-07-28 20:39:05 -07:00
|
|
|
ownership {
|
|
|
|
...ownershipFields
|
|
|
|
}
|
2022-03-15 11:17:13 -07:00
|
|
|
status {
|
|
|
|
removed
|
|
|
|
}
|
2022-04-12 22:42:12 -07:00
|
|
|
glossaryTerms {
|
|
|
|
...glossaryTerms
|
|
|
|
}
|
|
|
|
domain {
|
|
|
|
...entityDomain
|
|
|
|
}
|
2023-05-17 00:17:25 -07:00
|
|
|
...entityDataProduct
|
2022-04-12 22:42:12 -07:00
|
|
|
tags {
|
|
|
|
...globalTagsFields
|
|
|
|
}
|
|
|
|
editableProperties {
|
|
|
|
description
|
|
|
|
}
|
2022-04-07 19:17:24 -07:00
|
|
|
deprecation {
|
|
|
|
...deprecationFields
|
|
|
|
}
|
2022-04-12 22:42:12 -07:00
|
|
|
properties {
|
2025-01-14 07:57:10 +09:00
|
|
|
name
|
2022-04-12 22:42:12 -07:00
|
|
|
description
|
2025-01-14 07:57:10 +09:00
|
|
|
created {
|
|
|
|
time
|
|
|
|
actor
|
|
|
|
}
|
2022-04-12 22:42:12 -07:00
|
|
|
}
|
2023-06-21 04:10:07 -04:00
|
|
|
browsePathV2 {
|
|
|
|
...browsePathV2Fields
|
|
|
|
}
|
2021-07-28 20:39:05 -07:00
|
|
|
}
|
2022-01-25 21:03:31 -06:00
|
|
|
|
|
|
|
fragment platformFields on DataPlatform {
|
|
|
|
urn
|
|
|
|
type
|
2022-08-11 20:27:16 -04:00
|
|
|
lastIngested
|
2022-01-25 21:03:31 -06:00
|
|
|
name
|
|
|
|
properties {
|
|
|
|
type
|
|
|
|
displayName
|
|
|
|
datasetNameDelimiter
|
|
|
|
logoUrl
|
|
|
|
}
|
|
|
|
displayName
|
|
|
|
info {
|
|
|
|
type
|
|
|
|
displayName
|
|
|
|
datasetNameDelimiter
|
|
|
|
logoUrl
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fragment nonConflictingPlatformFields on DataPlatform {
|
|
|
|
urn
|
|
|
|
type
|
|
|
|
name
|
|
|
|
properties {
|
|
|
|
displayName
|
|
|
|
datasetNameDelimiter
|
|
|
|
logoUrl
|
|
|
|
}
|
|
|
|
displayName
|
|
|
|
info {
|
|
|
|
type
|
|
|
|
displayName
|
|
|
|
datasetNameDelimiter
|
|
|
|
logoUrl
|
|
|
|
}
|
|
|
|
}
|
2022-01-27 22:02:41 -08:00
|
|
|
|
2022-07-08 09:19:50 -07:00
|
|
|
fragment dataPlatformInstanceFields on DataPlatformInstance {
|
2022-05-09 17:28:50 -04:00
|
|
|
urn
|
|
|
|
type
|
|
|
|
platform {
|
|
|
|
...platformFields
|
|
|
|
}
|
|
|
|
instanceId
|
|
|
|
}
|
|
|
|
|
2022-02-02 13:51:39 -08:00
|
|
|
fragment entityContainer on Container {
|
|
|
|
urn
|
|
|
|
platform {
|
|
|
|
...platformFields
|
|
|
|
}
|
|
|
|
properties {
|
|
|
|
name
|
|
|
|
}
|
|
|
|
subTypes {
|
|
|
|
typeNames
|
|
|
|
}
|
2022-04-07 19:17:24 -07:00
|
|
|
deprecation {
|
|
|
|
...deprecationFields
|
|
|
|
}
|
2022-02-02 13:51:39 -08:00
|
|
|
}
|
|
|
|
|
2023-03-27 12:45:38 -04:00
|
|
|
fragment parentContainerFields on Container {
|
|
|
|
urn
|
2024-12-10 02:33:09 +05:30
|
|
|
type
|
2023-03-27 12:45:38 -04:00
|
|
|
properties {
|
|
|
|
name
|
|
|
|
}
|
2023-12-01 15:53:01 -08:00
|
|
|
subTypes {
|
|
|
|
typeNames
|
|
|
|
}
|
2023-03-27 12:45:38 -04:00
|
|
|
}
|
|
|
|
|
2023-09-18 16:14:33 -04:00
|
|
|
fragment domainEntitiesFields on Domain {
|
|
|
|
entities(input: { start: 0, count: 0 }) {
|
|
|
|
total
|
|
|
|
}
|
2024-09-28 15:15:45 -04:00
|
|
|
dataProducts: entities(input: { start: 0, count: 0, filters: [{ field: "_entityType", values: "DATA_PRODUCT" }] }) {
|
2023-09-18 16:14:33 -04:00
|
|
|
total
|
|
|
|
}
|
|
|
|
children: relationships(input: { types: ["IsPartOf"], direction: INCOMING, start: 0, count: 0 }) {
|
|
|
|
total
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-14 14:23:12 -07:00
|
|
|
fragment entityDomain on DomainAssociation {
|
|
|
|
domain {
|
|
|
|
urn
|
2022-08-31 20:48:32 -07:00
|
|
|
type
|
2022-07-14 14:23:12 -07:00
|
|
|
properties {
|
|
|
|
name
|
2022-08-31 20:48:32 -07:00
|
|
|
description
|
2022-07-14 14:23:12 -07:00
|
|
|
}
|
2023-09-18 16:14:33 -04:00
|
|
|
parentDomains {
|
|
|
|
...parentDomainsFields
|
|
|
|
}
|
|
|
|
...domainEntitiesFields
|
2022-01-27 22:02:41 -08:00
|
|
|
}
|
2022-07-14 14:23:12 -07:00
|
|
|
associatedUrn
|
2022-01-27 22:02:41 -08:00
|
|
|
}
|
2022-08-31 20:48:32 -07:00
|
|
|
|
2023-05-17 00:17:25 -07:00
|
|
|
fragment entityDataProduct on Entity {
|
|
|
|
dataProduct: relationships(input: { types: ["DataProductContains"], direction: INCOMING, start: 0, count: 1 }) {
|
|
|
|
relationships {
|
|
|
|
type
|
|
|
|
entity {
|
|
|
|
urn
|
|
|
|
type
|
|
|
|
... on DataProduct {
|
|
|
|
properties {
|
|
|
|
name
|
|
|
|
description
|
|
|
|
}
|
|
|
|
domain {
|
|
|
|
...entityDomain
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-31 20:48:32 -07:00
|
|
|
fragment inputFieldsFields on InputFields {
|
|
|
|
fields {
|
|
|
|
schemaFieldUrn
|
|
|
|
schemaField {
|
|
|
|
...schemaFieldFields
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-06-21 04:10:07 -04:00
|
|
|
|
|
|
|
fragment browsePathV2Fields on BrowsePathV2 {
|
|
|
|
path {
|
|
|
|
name
|
|
|
|
entity {
|
|
|
|
urn
|
|
|
|
type
|
|
|
|
... on Container {
|
|
|
|
properties {
|
|
|
|
name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
... on DataFlow {
|
|
|
|
properties {
|
|
|
|
name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
... on DataPlatformInstance {
|
|
|
|
platform {
|
|
|
|
name
|
|
|
|
properties {
|
|
|
|
displayName
|
|
|
|
}
|
|
|
|
}
|
|
|
|
instanceId
|
|
|
|
}
|
2024-03-22 15:48:31 +01:00
|
|
|
... on Dataset {
|
|
|
|
properties {
|
|
|
|
name
|
|
|
|
}
|
|
|
|
}
|
2023-06-21 04:10:07 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fragment entityDisplayNameFields on Entity {
|
|
|
|
urn
|
|
|
|
type
|
|
|
|
... on Dataset {
|
|
|
|
name
|
|
|
|
properties {
|
|
|
|
name
|
|
|
|
qualifiedName
|
|
|
|
}
|
|
|
|
}
|
|
|
|
... on CorpUser {
|
|
|
|
username
|
|
|
|
properties {
|
|
|
|
displayName
|
|
|
|
title
|
|
|
|
firstName
|
|
|
|
lastName
|
|
|
|
fullName
|
|
|
|
email
|
|
|
|
}
|
|
|
|
info {
|
|
|
|
active
|
|
|
|
displayName
|
|
|
|
title
|
|
|
|
firstName
|
|
|
|
lastName
|
|
|
|
fullName
|
|
|
|
email
|
|
|
|
}
|
|
|
|
}
|
|
|
|
... on CorpGroup {
|
|
|
|
name
|
|
|
|
info {
|
|
|
|
displayName
|
|
|
|
}
|
|
|
|
}
|
|
|
|
... on Dashboard {
|
|
|
|
dashboardId
|
|
|
|
properties {
|
|
|
|
name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
... on Chart {
|
|
|
|
chartId
|
|
|
|
properties {
|
|
|
|
name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
... on DataFlow {
|
|
|
|
properties {
|
|
|
|
name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
... on DataJob {
|
|
|
|
jobId
|
|
|
|
properties {
|
|
|
|
name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
... on GlossaryTerm {
|
|
|
|
name
|
|
|
|
hierarchicalName
|
|
|
|
properties {
|
|
|
|
name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
... on GlossaryNode {
|
|
|
|
properties {
|
|
|
|
name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
... on Domain {
|
|
|
|
properties {
|
|
|
|
name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
... on Container {
|
|
|
|
properties {
|
|
|
|
name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
... on MLFeatureTable {
|
|
|
|
name
|
|
|
|
}
|
|
|
|
... on MLFeature {
|
|
|
|
name
|
|
|
|
}
|
|
|
|
... on MLPrimaryKey {
|
|
|
|
name
|
|
|
|
}
|
|
|
|
... on MLModel {
|
|
|
|
name
|
|
|
|
}
|
|
|
|
... on MLModelGroup {
|
|
|
|
name
|
|
|
|
}
|
|
|
|
... on Tag {
|
|
|
|
name
|
|
|
|
properties {
|
|
|
|
name
|
|
|
|
colorHex
|
|
|
|
}
|
|
|
|
}
|
|
|
|
... on DataPlatform {
|
|
|
|
...nonConflictingPlatformFields
|
|
|
|
}
|
|
|
|
... on DataProduct {
|
|
|
|
properties {
|
|
|
|
name
|
|
|
|
}
|
|
|
|
}
|
2023-07-26 10:56:07 -04:00
|
|
|
... on DataPlatformInstance {
|
|
|
|
instanceId
|
|
|
|
}
|
2024-12-11 18:45:46 -05:00
|
|
|
... on StructuredPropertyEntity {
|
|
|
|
definition {
|
|
|
|
displayName
|
|
|
|
qualifiedName
|
|
|
|
}
|
|
|
|
}
|
2023-06-21 04:10:07 -04:00
|
|
|
}
|
2024-01-23 16:30:02 -05:00
|
|
|
|
2024-03-20 19:56:25 +05:30
|
|
|
fragment ermodelrelationPropertiesFields on ERModelRelationshipProperties {
|
|
|
|
name
|
|
|
|
source {
|
|
|
|
...datasetERModelRelationshipFields
|
|
|
|
}
|
|
|
|
destination {
|
|
|
|
...datasetERModelRelationshipFields
|
|
|
|
}
|
|
|
|
relationshipFieldMappings {
|
|
|
|
...relationshipFieldMapping
|
|
|
|
}
|
|
|
|
createdTime
|
|
|
|
createdActor {
|
|
|
|
urn
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fragment relationshipFieldMapping on RelationshipFieldMapping {
|
|
|
|
sourceField
|
|
|
|
destinationField
|
|
|
|
}
|
|
|
|
|
|
|
|
fragment ermodelrelationEditablePropertiesFields on ERModelRelationshipEditableProperties {
|
|
|
|
description
|
|
|
|
name
|
|
|
|
}
|
|
|
|
|
|
|
|
fragment datasetERModelRelationshipFields on Dataset {
|
|
|
|
urn
|
|
|
|
name
|
|
|
|
properties {
|
|
|
|
name
|
|
|
|
description
|
|
|
|
}
|
|
|
|
editableProperties {
|
|
|
|
description
|
|
|
|
}
|
|
|
|
schemaMetadata {
|
|
|
|
...schemaMetadataFields
|
|
|
|
}
|
|
|
|
}
|
2024-01-25 10:12:01 -05:00
|
|
|
fragment structuredPropertyFields on StructuredPropertyEntity {
|
|
|
|
urn
|
|
|
|
type
|
|
|
|
definition {
|
|
|
|
displayName
|
|
|
|
qualifiedName
|
|
|
|
description
|
|
|
|
cardinality
|
2024-05-09 13:55:25 -05:00
|
|
|
immutable
|
2024-01-25 10:12:01 -05:00
|
|
|
valueType {
|
2024-12-11 18:45:46 -05:00
|
|
|
urn
|
|
|
|
type
|
2024-01-25 10:12:01 -05:00
|
|
|
info {
|
|
|
|
type
|
|
|
|
displayName
|
|
|
|
}
|
|
|
|
}
|
|
|
|
entityTypes {
|
2024-12-11 18:45:46 -05:00
|
|
|
urn
|
|
|
|
type
|
2024-01-25 10:12:01 -05:00
|
|
|
info {
|
|
|
|
type
|
|
|
|
}
|
|
|
|
}
|
|
|
|
cardinality
|
|
|
|
typeQualifier {
|
|
|
|
allowedTypes {
|
|
|
|
urn
|
|
|
|
type
|
|
|
|
info {
|
|
|
|
type
|
|
|
|
displayName
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
allowedValues {
|
|
|
|
value {
|
|
|
|
... on StringValue {
|
|
|
|
stringValue
|
|
|
|
}
|
|
|
|
... on NumberValue {
|
|
|
|
numberValue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
description
|
|
|
|
}
|
2024-12-11 18:45:46 -05:00
|
|
|
created {
|
|
|
|
time
|
|
|
|
actor {
|
|
|
|
urn
|
|
|
|
editableProperties {
|
|
|
|
displayName
|
|
|
|
pictureLink
|
|
|
|
}
|
|
|
|
...entityDisplayNameFields
|
|
|
|
}
|
|
|
|
}
|
|
|
|
lastModified {
|
|
|
|
time
|
|
|
|
actor {
|
|
|
|
urn
|
|
|
|
editableProperties {
|
|
|
|
displayName
|
|
|
|
pictureLink
|
|
|
|
}
|
|
|
|
...entityDisplayNameFields
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
settings {
|
|
|
|
isHidden
|
|
|
|
showInSearchFilters
|
|
|
|
showAsAssetBadge
|
|
|
|
showInAssetSummary
|
|
|
|
showInColumnsTable
|
2024-01-25 10:12:01 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fragment structuredPropertiesFields on StructuredPropertiesEntry {
|
|
|
|
structuredProperty {
|
2024-09-18 18:32:49 -04:00
|
|
|
exists
|
2024-01-25 10:12:01 -05:00
|
|
|
...structuredPropertyFields
|
|
|
|
}
|
|
|
|
values {
|
|
|
|
... on StringValue {
|
|
|
|
stringValue
|
|
|
|
}
|
|
|
|
... on NumberValue {
|
|
|
|
numberValue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
valueEntities {
|
|
|
|
urn
|
|
|
|
type
|
|
|
|
...entityDisplayNameFields
|
|
|
|
}
|
2024-12-11 18:45:46 -05:00
|
|
|
associatedUrn
|
2024-01-25 10:12:01 -05:00
|
|
|
}
|
|
|
|
|
2024-01-23 16:30:02 -05:00
|
|
|
fragment autoRenderAspectFields on RawAspect {
|
|
|
|
aspectName
|
|
|
|
payload
|
|
|
|
renderSpec {
|
|
|
|
displayType
|
|
|
|
displayName
|
|
|
|
key
|
|
|
|
}
|
|
|
|
}
|
2024-02-02 15:55:36 -05:00
|
|
|
|
|
|
|
fragment formAssociationFields on FormAssociation {
|
|
|
|
associatedUrn
|
|
|
|
incompletePrompts {
|
|
|
|
...formPromptAssociationFields
|
|
|
|
}
|
|
|
|
completedPrompts {
|
|
|
|
...formPromptAssociationFields
|
|
|
|
}
|
|
|
|
form {
|
|
|
|
urn
|
|
|
|
type
|
|
|
|
info {
|
|
|
|
name
|
|
|
|
description
|
|
|
|
type
|
|
|
|
prompts {
|
|
|
|
id
|
|
|
|
formUrn
|
|
|
|
title
|
|
|
|
description
|
|
|
|
type
|
|
|
|
required
|
|
|
|
structuredPropertyParams {
|
|
|
|
structuredProperty {
|
|
|
|
...structuredPropertyFields
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
actors {
|
|
|
|
owners
|
|
|
|
isAssignedToMe
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ownership {
|
|
|
|
...ownershipFields
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fragment formPromptAssociationFields on FormPromptAssociation {
|
|
|
|
id
|
|
|
|
lastModified {
|
|
|
|
time
|
|
|
|
actor {
|
|
|
|
urn
|
|
|
|
type
|
|
|
|
...entityDisplayNameFields
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fieldAssociations {
|
|
|
|
completedFieldPrompts {
|
|
|
|
fieldPath
|
|
|
|
lastModified {
|
|
|
|
time
|
|
|
|
actor {
|
|
|
|
urn
|
|
|
|
type
|
|
|
|
...entityDisplayNameFields
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-02-13 15:02:52 -05:00
|
|
|
|
2024-02-14 09:06:21 -08:00
|
|
|
fragment entityHealth on Health {
|
|
|
|
type
|
|
|
|
status
|
|
|
|
message
|
|
|
|
causes
|
|
|
|
}
|
|
|
|
|
2024-02-13 15:02:52 -05:00
|
|
|
fragment formsFields on Forms {
|
|
|
|
completedForms {
|
|
|
|
...formAssociationFields
|
|
|
|
}
|
|
|
|
incompleteForms {
|
|
|
|
...formAssociationFields
|
|
|
|
}
|
|
|
|
verifications {
|
|
|
|
form {
|
|
|
|
urn
|
|
|
|
}
|
|
|
|
lastModified {
|
|
|
|
time
|
|
|
|
actor {
|
|
|
|
urn
|
|
|
|
type
|
|
|
|
...entityDisplayNameFields
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-03-20 15:25:36 -04:00
|
|
|
|
|
|
|
fragment entityPrivileges on EntityPrivileges {
|
|
|
|
canEditLineage
|
|
|
|
canEditQueries
|
|
|
|
canEditEmbed
|
|
|
|
canManageEntity
|
|
|
|
canManageChildren
|
|
|
|
canEditProperties
|
|
|
|
}
|
2024-04-16 04:49:21 +05:30
|
|
|
|
|
|
|
fragment businessAttribute on BusinessAttributeAssociation {
|
|
|
|
businessAttribute {
|
|
|
|
urn
|
|
|
|
type
|
2024-06-21 11:03:56 -07:00
|
|
|
ownership {
|
|
|
|
...ownershipFields
|
|
|
|
}
|
2024-04-16 04:49:21 +05:30
|
|
|
properties {
|
|
|
|
name
|
|
|
|
description
|
|
|
|
businessAttributeDataType: type
|
|
|
|
lastModified {
|
|
|
|
time
|
|
|
|
}
|
|
|
|
created {
|
|
|
|
time
|
|
|
|
}
|
|
|
|
tags {
|
|
|
|
tags {
|
|
|
|
tag {
|
|
|
|
urn
|
|
|
|
name
|
|
|
|
properties {
|
|
|
|
name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
associatedUrn
|
|
|
|
}
|
|
|
|
}
|
|
|
|
glossaryTerms {
|
|
|
|
terms {
|
|
|
|
term {
|
|
|
|
urn
|
|
|
|
type
|
|
|
|
properties {
|
|
|
|
name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
associatedUrn
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
associatedUrn
|
|
|
|
}
|