LineageRelations Data Type

Abstract Type
Properties
name data type description
edges map of array of Node
resources map of Source
rootId string
rootPath string

Example

This data type is abstract. The example below may be incomplete. More accurate examples can be found in subtypes pages.
{
  "edges" : {
    "property1" : [ {
      "opDetails" : {
        "executions" : [ { }, { } ],
        "op" : { }
      },
      "resourcePath" : "...",
      "resourceId" : "...",
      "resourceType" : "...",
      "hasParents" : true,
      "collectionRoot" : true,
      "hasChildren" : true
    }, {
      "opDetails" : {
        "executions" : [ { }, { } ],
        "op" : { }
      },
      "resourcePath" : "...",
      "resourceId" : "...",
      "resourceType" : "...",
      "hasParents" : true,
      "collectionRoot" : true,
      "hasChildren" : true
    } ],
    "property2" : [ {
      "opDetails" : {
        "executions" : [ { }, { } ],
        "op" : { }
      },
      "resourcePath" : "...",
      "resourceId" : "...",
      "resourceType" : "...",
      "hasParents" : true,
      "collectionRoot" : true,
      "hasChildren" : true
    }, {
      "opDetails" : {
        "executions" : [ { }, { } ],
        "op" : { }
      },
      "resourcePath" : "...",
      "resourceId" : "...",
      "resourceType" : "...",
      "hasParents" : true,
      "collectionRoot" : true,
      "hasChildren" : true
    } ]
  },
  "resources" : {
    "property1" : {
      "resourcePath" : "...",
      "resourceId" : "...",
      "resourceType" : "...",
      "hasParents" : true,
      "collectionRoot" : true,
      "hasChildren" : true
    },
    "property2" : {
      "resourcePath" : "...",
      "resourceId" : "...",
      "resourceType" : "...",
      "hasParents" : true,
      "collectionRoot" : true,
      "hasChildren" : true
    }
  },
  "rootId" : "...",
  "rootPath" : "..."
}