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
|
|
|
|
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
|
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
|
|
|
|
}
|
|
|
|
|
2022-02-02 13:51:39 -08:00
|
|
|
fragment institutionalMemoryFields on InstitutionalMemory {
|
|
|
|
elements {
|
|
|
|
url
|
|
|
|
author {
|
|
|
|
urn
|
|
|
|
username
|
|
|
|
}
|
|
|
|
description
|
|
|
|
created {
|
|
|
|
actor
|
|
|
|
time
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
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
|
|
|
|
}
|
|
|
|
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
|
|
|
|
}
|
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
|
|
|
|
}
|
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
|
|
|
|
}
|
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
|
|
|
|
}
|
2022-04-07 19:17:24 -07:00
|
|
|
deprecation {
|
|
|
|
...deprecationFields
|
|
|
|
}
|
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
|
|
|
|
}
|
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
|
|
|
|
}
|
2022-12-20 10:54:08 -05:00
|
|
|
privileges {
|
|
|
|
canEditLineage
|
|
|
|
}
|
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
|
|
|
|
}
|
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
|
|
|
|
}
|
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
|
|
|
}
|
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
|
|
|
|
}
|
|
|
|
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: ["Contains"], direction: INCOMING, start: 0, count: 100 }) {
|
|
|
|
relationships {
|
|
|
|
type
|
|
|
|
entity {
|
|
|
|
... on MLFeatureTable {
|
|
|
|
platform {
|
|
|
|
...platformFields
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
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
|
|
|
|
}
|
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
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
|
|
|
|
}
|
|
|
|
tags {
|
|
|
|
...globalTagsFields
|
|
|
|
}
|
|
|
|
editableProperties {
|
|
|
|
description
|
|
|
|
}
|
2022-04-07 19:17:24 -07:00
|
|
|
deprecation {
|
|
|
|
...deprecationFields
|
|
|
|
}
|
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
|
|
|
|
globalTags {
|
|
|
|
...globalTagsFields
|
|
|
|
}
|
|
|
|
glossaryTerms {
|
|
|
|
...glossaryTerms
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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 {
|
|
|
|
description
|
|
|
|
date
|
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
|
|
|
|
}
|
|
|
|
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
|
|
|
}
|
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
|
|
|
|
}
|
|
|
|
tags {
|
|
|
|
...globalTagsFields
|
|
|
|
}
|
|
|
|
editableProperties {
|
|
|
|
description
|
|
|
|
}
|
2022-04-07 19:17:24 -07:00
|
|
|
deprecation {
|
|
|
|
...deprecationFields
|
|
|
|
}
|
2022-04-12 22:42:12 -07:00
|
|
|
properties {
|
|
|
|
description
|
|
|
|
}
|
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
|
|
|
|
properties {
|
|
|
|
name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
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
|
|
|
|
|
|
|
fragment inputFieldsFields on InputFields {
|
|
|
|
fields {
|
|
|
|
schemaFieldUrn
|
|
|
|
schemaField {
|
|
|
|
...schemaFieldFields
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|