Retrieve an existing Statistics about dependencies

get

/services/{version}/mpoints/{item}/dependencyStats

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

Body ()
Root Schema : Oracle GoldenGate dependency statistics
Type: object
Title: Oracle GoldenGate dependency statistics
Show Source
Nested Schema : dependencyStats
Type: array
Minimum Number of Items: 0
Maximum Number of Items: 2147483647
Show Source
Nested Schema : items
Type: object
Show Source
Example Response (application/json)
{
    "$schema":"api:standardResponse",
    "response":{
        "$schema":"mpoints:dependencyStats",
        "dependencyStats":[
            {
                "parentTableName":"U1.WAREHOUSE",
                "childTableName":"U1.ITEMS",
                "count":23
            },
            {
                "parentTableName":"U1.ITEMS",
                "childTableName":"U1.STOCK",
                "count":473
            }
        ]
    },
    "messages":[
    ],
    "links":[
    ]
}
Back to Top