remove snowplow telemetry schemas for < 0.11.0 versions (#12279)

This commit is contained in:
Michelle Ark
2025-12-12 14:54:40 -05:00
committed by GitHub
parent b66dff7278
commit 8097a34726
5 changed files with 0 additions and 107 deletions

View File

@@ -1,3 +0,0 @@
The events outlined here exist to support "very very old versions of dbt-core, which expected to look directly at the HEAD branch of this github repo to find validation schemas".
Eventually these should go away (see https://github.com/dbt-labs/dbt-core/issues/7228)

View File

@@ -1,10 +0,0 @@
{
"type": "object",
"title": "invocation_env",
"description": "DBT invocation environment type",
"properties": {
"environment": {
"type": "string"
}
}
}

View File

@@ -1,43 +0,0 @@
{
"type": "object",
"title": "invocation",
"description": "Schema for a dbt invocation",
"properties": {
"project_id": {
"type": "string"
},
"user_id": {
"type": "string"
},
"invocation_id": {
"type": "string"
},
"command": {
"type": "string"
},
"command_options": {
"type": "string"
},
"progress": {
"type": "string",
"enum": ["start", "end"]
},
"version": {
"type": "string"
},
"remote_ip": {
"type": "string"
},
"run_type": {
"type": "string",
"enum": ["dry", "test", "regular"]
},
"result_type": {
"type": "string",
"enum": ["ok", "error"]
},
"result": {
"type": "string"
}
}
}

View File

@@ -1,16 +0,0 @@
{
"type": "object",
"title": "platform",
"description": "Schema for a dbt user's platform",
"properties": {
"platform": {
"type": "string"
},
"python": {
"type": "string"
},
"python_version": {
"type": "string"
}
}
}

View File

@@ -1,35 +0,0 @@
{
"type": "object",
"title": "run_model",
"description": "Schema for the execution of a model",
"properties": {
"index": {
"type": "number"
},
"total": {
"type": "number"
},
"execution_time": {
"type": "number",
"multiple_of": 0.01
},
"run_status": {
"type": "string"
},
"run_skipped": {
"type": "string"
},
"run_error": {
"type": "string"
},
"model_materialization": {
"type": "string"
},
"model_id": {
"type": "string"
},
"hashed_contents": {
"type": "string"
}
}
}