Retrieve run or job facets for a run.
Retrieve run or job facets for a run.
Path Parameters
id uuid required
The ID of the run.
Query Parameters
type string required
Possible values: [run
, job
]
Indicates if should return job or run facets.
Responses
- 200
OK
application/json
Schema
Example (from schema)
Schema
runId string
The ID associated with the run modifying the table.
facets object
{
"runId": "string",
"facets": {
"_producer": "https://github.com/OpenLineage/OpenLineage/blob/v1-0-0/client",
"_schemaURL": "https://github.com/OpenLineage/OpenLineage/blob/v1-0-0/spec/OpenLineage.yml#MyCustomJobFacet"
}
}
GET /jobs/runs/:id/facets
Request
Request
curl / cURL
curl -L -X GET 'http://localhost:5000/api/v1/jobs/runs/:id/facets' \
-H 'Accept: application/json'
python / requests
curl -L -X GET 'http://localhost:5000/api/v1/jobs/runs/:id/facets' \
-H 'Accept: application/json'
go / native
curl -L -X GET 'http://localhost:5000/api/v1/jobs/runs/:id/facets' \
-H 'Accept: application/json'
nodejs / axios
curl -L -X GET 'http://localhost:5000/api/v1/jobs/runs/:id/facets' \
-H 'Accept: application/json'
ruby / Net::HTTP
curl -L -X GET 'http://localhost:5000/api/v1/jobs/runs/:id/facets' \
-H 'Accept: application/json'
csharp / RestSharp
curl -L -X GET 'http://localhost:5000/api/v1/jobs/runs/:id/facets' \
-H 'Accept: application/json'
php / cURL
curl -L -X GET 'http://localhost:5000/api/v1/jobs/runs/:id/facets' \
-H 'Accept: application/json'
java / OkHttp
curl -L -X GET 'http://localhost:5000/api/v1/jobs/runs/:id/facets' \
-H 'Accept: application/json'
powershell / RestMethod
curl -L -X GET 'http://localhost:5000/api/v1/jobs/runs/:id/facets' \
-H 'Accept: application/json'