Sha256: b1ed03c11391ebb89ffc5212f303702a46cc0f528dbf1ddeb591616288c8c10f

Contents?: true

Size: 1.47 KB

Versions: 9

Compression:

Stored size: 1.47 KB

Contents

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://openlineage.io/spec/facets/1-1-1/SchemaDatasetFacet.json",
  "$defs": {
    "SchemaDatasetFacetFields": {
      "type": "object",
      "properties": {
        "name": {
          "description": "The name of the field.",
          "type": "string",
          "example": "column1"
        },
        "type": {
          "description": "The type of the field.",
          "type": "string",
          "example": "VARCHAR|INT|..."
        },
        "description": {
          "description": "The description of the field.",
          "type": "string"
        },
        "fields": {
          "description": "Nested struct fields.",
          "type": "array",
          "items": {
            "$ref": "#/$defs/SchemaDatasetFacetFields"
          }
        }
      },
      "required": ["name"]
    },
    "SchemaDatasetFacet": {
      "allOf": [
        {
          "$ref": "https://openlineage.io/spec/2-0-2/OpenLineage.json#/$defs/DatasetFacet"
        },
        {
          "type": "object",
          "properties": {
            "fields": {
              "description": "The fields of the data source.",
              "type": "array",
              "items": {
                "$ref": "#/$defs/SchemaDatasetFacetFields"
              }
            }
          }
        }
      ],
      "type": "object"
    }
  },
  "type": "object",
  "properties": {
    "schema": {
      "$ref": "#/$defs/SchemaDatasetFacet"
    }
  }
}

Version data entries

9 entries across 9 versions & 4 rubygems

Version Path
fluent-plugin-nuopenlineage-light-0.1.0 spec/facets/SchemaDatasetFacet.json
fluent-plugin-openlineage-light-0.1.4 spec/facets/SchemaDatasetFacet.json
fluent-plugin-openlineage-light-0.1.3 spec/facets/SchemaDatasetFacet.json
fluent-plugin-openlineage-light-0.1.1 spec/facets/SchemaDatasetFacet.json
fluent-plugin-openlineage-light-0.1.0 spec/facets/SchemaDatasetFacet.json
fluent-plugin-openlineage-0.1.3 spec/facets/SchemaDatasetFacet.json
fluent-plugin-openlineage-0.1.1 spec/facets/SchemaDatasetFacet.json
fluent-plugin-openlineage-0.1.0 spec/facets/SchemaDatasetFacet.json
fluentd-openlineage-parser-0.1.0 spec/facets/SchemaDatasetFacet.json