Compare commits

...

2 Commits

Author SHA1 Message Date
Kshitij Aranke
0199978a61 merge from main 2024-05-13 16:37:39 +01:00
Kshitij Aranke
0b0092842f test: remove schemas/dbt directory 2024-05-07 19:13:40 +01:00
13 changed files with 0 additions and 63235 deletions

View File

@@ -1,425 +0,0 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"title": "CatalogArtifact",
"properties": {
"metadata": {
"type": "object",
"title": "CatalogMetadata",
"properties": {
"dbt_schema_version": {
"type": "string"
},
"dbt_version": {
"type": "string",
"default": "1.8.0a1"
},
"generated_at": {
"type": "string"
},
"invocation_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"env": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"propertyNames": {
"type": "string"
}
}
},
"additionalProperties": false
},
"nodes": {
"type": "object",
"additionalProperties": {
"type": "object",
"title": "CatalogTable",
"properties": {
"metadata": {
"type": "object",
"title": "TableMetadata",
"properties": {
"type": {
"type": "string"
},
"schema": {
"type": "string"
},
"name": {
"type": "string"
},
"database": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
},
"comment": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
},
"owner": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
}
},
"additionalProperties": false,
"required": [
"type",
"schema",
"name"
]
},
"columns": {
"type": "object",
"additionalProperties": {
"type": "object",
"title": "ColumnMetadata",
"properties": {
"type": {
"type": "string"
},
"index": {
"type": "integer"
},
"name": {
"type": "string"
},
"comment": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
}
},
"additionalProperties": false,
"required": [
"type",
"index",
"name"
]
},
"propertyNames": {
"type": "string"
}
},
"stats": {
"type": "object",
"additionalProperties": {
"type": "object",
"title": "StatsItem",
"properties": {
"id": {
"type": "string"
},
"label": {
"type": "string"
},
"value": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "string"
},
{
"type": "number"
},
{
"type": "null"
}
]
},
"include": {
"type": "boolean"
},
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
}
},
"additionalProperties": false,
"required": [
"id",
"label",
"value",
"include"
]
},
"propertyNames": {
"type": "string"
}
},
"unique_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
}
},
"additionalProperties": false,
"required": [
"metadata",
"columns",
"stats"
]
},
"propertyNames": {
"type": "string"
}
},
"sources": {
"type": "object",
"additionalProperties": {
"type": "object",
"title": "CatalogTable",
"properties": {
"metadata": {
"type": "object",
"title": "TableMetadata",
"properties": {
"type": {
"type": "string"
},
"schema": {
"type": "string"
},
"name": {
"type": "string"
},
"database": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
},
"comment": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
},
"owner": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
}
},
"additionalProperties": false,
"required": [
"type",
"schema",
"name"
]
},
"columns": {
"type": "object",
"additionalProperties": {
"type": "object",
"title": "ColumnMetadata",
"properties": {
"type": {
"type": "string"
},
"index": {
"type": "integer"
},
"name": {
"type": "string"
},
"comment": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
}
},
"additionalProperties": false,
"required": [
"type",
"index",
"name"
]
},
"propertyNames": {
"type": "string"
}
},
"stats": {
"type": "object",
"additionalProperties": {
"type": "object",
"title": "StatsItem",
"properties": {
"id": {
"type": "string"
},
"label": {
"type": "string"
},
"value": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "string"
},
{
"type": "number"
},
{
"type": "null"
}
]
},
"include": {
"type": "boolean"
},
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
}
},
"additionalProperties": false,
"required": [
"id",
"label",
"value",
"include"
]
},
"propertyNames": {
"type": "string"
}
},
"unique_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
}
},
"additionalProperties": false,
"required": [
"metadata",
"columns",
"stats"
]
},
"propertyNames": {
"type": "string"
}
},
"errors": {
"anyOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "null"
}
],
"default": null
},
"_compile_results": {
"anyOf": [
{},
{
"type": "null"
}
],
"default": null
}
},
"additionalProperties": false,
"required": [
"metadata",
"nodes",
"sources"
],
"$id": "https://schemas.getdbt.com/dbt/catalog/v1.json"
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -1,198 +0,0 @@
{
"$ref": "#/$defs/RunResultsArtifact",
"$defs": {
"BaseArtifactMetadata": {
"type": "object",
"title": "BaseArtifactMetadata",
"properties": {
"dbt_schema_version": {
"type": "string"
},
"dbt_version": {
"type": "string",
"default": "1.7.0b1"
},
"generated_at": {
"type": "string"
},
"invocation_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"env": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"propertyNames": {
"type": "string"
}
}
},
"additionalProperties": false,
"required": [
"dbt_schema_version"
]
},
"TimingInfo": {
"type": "object",
"title": "TimingInfo",
"properties": {
"name": {
"type": "string"
},
"started_at": {
"anyOf": [
{
"type": "string",
"format": "date-time"
},
{
"type": "null"
}
],
"default": null
},
"completed_at": {
"anyOf": [
{
"type": "string",
"format": "date-time"
},
{
"type": "null"
}
],
"default": null
}
},
"additionalProperties": false,
"required": [
"name"
]
},
"RunResultOutput": {
"type": "object",
"title": "RunResultOutput",
"properties": {
"status": {
"anyOf": [
{
"enum": [
"success",
"error",
"skipped"
]
},
{
"enum": [
"pass",
"error",
"fail",
"warn",
"skipped"
]
},
{
"enum": [
"pass",
"warn",
"error",
"runtime error"
]
}
]
},
"timing": {
"type": "array",
"items": {
"$ref": "#/$defs/TimingInfo"
}
},
"thread_id": {
"type": "string"
},
"execution_time": {
"type": "number"
},
"adapter_response": {
"type": "object",
"propertyNames": {
"type": "string"
}
},
"message": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"failures": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
]
},
"unique_id": {
"type": "string"
}
},
"additionalProperties": false,
"required": [
"status",
"timing",
"thread_id",
"execution_time",
"adapter_response",
"message",
"failures",
"unique_id"
]
},
"RunResultsArtifact": {
"type": "object",
"title": "RunResultsArtifact",
"properties": {
"metadata": {
"$ref": "#/$defs/BaseArtifactMetadata"
},
"results": {
"type": "array",
"items": {
"$ref": "#/$defs/RunResultOutput"
}
},
"elapsed_time": {
"type": "number"
},
"args": {
"type": "object",
"propertyNames": {
"type": "string"
}
}
},
"additionalProperties": false,
"required": [
"metadata",
"results",
"elapsed_time"
]
}
},
"$id": "https://schemas.getdbt.com/dbt/run-results/v4.json"
}

View File

@@ -1,229 +0,0 @@
{
"$ref": "#/$defs/RunResultsArtifact",
"$defs": {
"BaseArtifactMetadata": {
"type": "object",
"title": "BaseArtifactMetadata",
"properties": {
"dbt_schema_version": {
"type": "string"
},
"dbt_version": {
"type": "string",
"default": "1.7.0b1"
},
"generated_at": {
"type": "string"
},
"invocation_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"env": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"propertyNames": {
"type": "string"
}
}
},
"additionalProperties": false,
"required": [
"dbt_schema_version"
]
},
"TimingInfo": {
"type": "object",
"title": "TimingInfo",
"properties": {
"name": {
"type": "string"
},
"started_at": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
},
"completed_at": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
}
},
"additionalProperties": false,
"required": [
"name"
]
},
"RunResultOutput": {
"type": "object",
"title": "RunResultOutput",
"properties": {
"status": {
"anyOf": [
{
"enum": [
"success",
"error",
"skipped"
]
},
{
"enum": [
"pass",
"error",
"fail",
"warn",
"skipped"
]
},
{
"enum": [
"pass",
"warn",
"error",
"runtime error"
]
}
]
},
"timing": {
"type": "array",
"items": {
"$ref": "#/$defs/TimingInfo"
}
},
"thread_id": {
"type": "string"
},
"execution_time": {
"type": "number"
},
"adapter_response": {
"type": "object",
"propertyNames": {
"type": "string"
}
},
"message": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"failures": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
]
},
"unique_id": {
"type": "string"
},
"compiled": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
]
},
"compiled_code": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"relation_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
}
},
"additionalProperties": false,
"required": [
"status",
"timing",
"thread_id",
"execution_time",
"adapter_response",
"message",
"failures",
"unique_id",
"compiled",
"compiled_code",
"relation_name"
]
},
"RunResultsArtifact": {
"type": "object",
"title": "RunResultsArtifact",
"properties": {
"metadata": {
"$ref": "#/$defs/BaseArtifactMetadata"
},
"results": {
"type": "array",
"items": {
"$ref": "#/$defs/RunResultOutput"
}
},
"elapsed_time": {
"type": "number"
},
"args": {
"type": "object",
"propertyNames": {
"type": "string"
}
}
},
"additionalProperties": false,
"required": [
"metadata",
"results",
"elapsed_time"
]
}
},
"$id": "https://schemas.getdbt.com/dbt/run-results/v5.json"
}

View File

@@ -1,216 +0,0 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"title": "RunResultsArtifact",
"properties": {
"metadata": {
"type": "object",
"title": "BaseArtifactMetadata",
"properties": {
"dbt_schema_version": {
"type": "string"
},
"dbt_version": {
"type": "string",
"default": "1.8.0a1"
},
"generated_at": {
"type": "string"
},
"invocation_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"env": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"propertyNames": {
"type": "string"
}
}
},
"additionalProperties": false,
"required": [
"dbt_schema_version"
]
},
"results": {
"type": "array",
"items": {
"type": "object",
"title": "RunResultOutput",
"properties": {
"status": {
"anyOf": [
{
"enum": [
"success",
"error",
"skipped"
]
},
{
"enum": [
"pass",
"error",
"fail",
"warn",
"skipped"
]
},
{
"enum": [
"pass",
"warn",
"error",
"runtime error"
]
}
]
},
"timing": {
"type": "array",
"items": {
"type": "object",
"title": "TimingInfo",
"properties": {
"name": {
"type": "string"
},
"started_at": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
},
"completed_at": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
}
},
"additionalProperties": false,
"required": [
"name"
]
}
},
"thread_id": {
"type": "string"
},
"execution_time": {
"type": "number"
},
"adapter_response": {
"type": "object",
"propertyNames": {
"type": "string"
}
},
"message": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"failures": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
]
},
"unique_id": {
"type": "string"
},
"compiled": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
]
},
"compiled_code": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"relation_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
}
},
"additionalProperties": false,
"required": [
"status",
"timing",
"thread_id",
"execution_time",
"adapter_response",
"message",
"failures",
"unique_id",
"compiled",
"compiled_code",
"relation_name"
]
}
},
"elapsed_time": {
"type": "number"
},
"args": {
"type": "object",
"propertyNames": {
"type": "string"
}
}
},
"additionalProperties": false,
"required": [
"metadata",
"results",
"elapsed_time"
],
"$id": "https://schemas.getdbt.com/dbt/run-results/v6.json"
}

View File

@@ -1,280 +0,0 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"title": "FreshnessExecutionResultArtifact",
"properties": {
"metadata": {
"type": "object",
"title": "FreshnessMetadata",
"properties": {
"dbt_schema_version": {
"type": "string"
},
"dbt_version": {
"type": "string",
"default": "1.8.0a1"
},
"generated_at": {
"type": "string"
},
"invocation_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"env": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"propertyNames": {
"type": "string"
}
}
},
"additionalProperties": false
},
"results": {
"type": "array",
"items": {
"anyOf": [
{
"type": "object",
"title": "SourceFreshnessRuntimeError",
"properties": {
"unique_id": {
"type": "string"
},
"error": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
},
{
"type": "null"
}
]
},
"status": {
"enum": [
"runtime error"
]
}
},
"additionalProperties": false,
"required": [
"unique_id",
"error",
"status"
]
},
{
"type": "object",
"title": "SourceFreshnessOutput",
"properties": {
"unique_id": {
"type": "string"
},
"max_loaded_at": {
"type": "string"
},
"snapshotted_at": {
"type": "string"
},
"max_loaded_at_time_ago_in_s": {
"type": "number"
},
"status": {
"enum": [
"pass",
"warn",
"error",
"runtime error"
]
},
"criteria": {
"type": "object",
"title": "FreshnessThreshold",
"properties": {
"warn_after": {
"anyOf": [
{
"type": "object",
"title": "Time",
"properties": {
"count": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null
},
"period": {
"anyOf": [
{
"enum": [
"minute",
"hour",
"day"
]
},
{
"type": "null"
}
],
"default": null
}
},
"additionalProperties": false
},
{
"type": "null"
}
]
},
"error_after": {
"anyOf": [
{
"type": "object",
"title": "Time",
"properties": {
"count": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null
},
"period": {
"anyOf": [
{
"enum": [
"minute",
"hour",
"day"
]
},
{
"type": "null"
}
],
"default": null
}
},
"additionalProperties": false
},
{
"type": "null"
}
]
},
"filter": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
}
},
"additionalProperties": false
},
"adapter_response": {
"type": "object",
"propertyNames": {
"type": "string"
}
},
"timing": {
"type": "array",
"items": {
"type": "object",
"title": "TimingInfo",
"properties": {
"name": {
"type": "string"
},
"started_at": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
},
"completed_at": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
}
},
"additionalProperties": false,
"required": [
"name"
]
}
},
"thread_id": {
"type": "string"
},
"execution_time": {
"type": "number"
}
},
"additionalProperties": false,
"required": [
"unique_id",
"max_loaded_at",
"snapshotted_at",
"max_loaded_at_time_ago_in_s",
"status",
"criteria",
"adapter_response",
"timing",
"thread_id",
"execution_time"
]
}
]
}
},
"elapsed_time": {
"type": "number"
}
},
"additionalProperties": false,
"required": [
"metadata",
"results",
"elapsed_time"
],
"$id": "https://schemas.getdbt.com/dbt/sources/v3.json"
}