Sha256: 9a18a508746627eff18fa84ca1694e1a9f2d556ac0052dbdb6970d8a35f75231
Contents?: true
Size: 1.34 KB
Versions: 9
Compression:
Stored size: 1.34 KB
Contents
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://openlineage.io/spec/facets/1-0-1/OwnershipDatasetFacet.json", "$defs": { "OwnershipDatasetFacet": { "allOf": [ { "$ref": "https://openlineage.io/spec/2-0-2/OpenLineage.json#/$defs/DatasetFacet" }, { "type": "object", "properties": { "owners": { "description": "The owners of the dataset.", "type": "array", "items": { "type": "object", "properties": { "name": { "description": "the identifier of the owner of the Dataset. It is recommended to define this as a URN. For example application:foo, user:jdoe, team:data", "type": "string", "example": "application:app_name" }, "type": { "description": "The type of ownership (optional)", "type": "string", "example": "MAINTAINER" } }, "required": ["name"] } } } } ], "type": "object" } }, "type": "object", "properties": { "ownership": { "$ref": "#/$defs/OwnershipDatasetFacet" } } }
Version data entries
9 entries across 9 versions & 4 rubygems