From 27c3de98e4cbcced13f7ab1be8e538ef9213c4d9 Mon Sep 17 00:00:00 2001 From: Malo Chevillotte Date: Thu, 12 Dec 2024 10:31:52 -0500 Subject: [PATCH] Make fact column nullable --- eppo_metrics_sync/schema/eppo_metric_schema.json | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/eppo_metrics_sync/schema/eppo_metric_schema.json b/eppo_metrics_sync/schema/eppo_metric_schema.json index 2c4e2ee..4d9ee5a 100644 --- a/eppo_metrics_sync/schema/eppo_metric_schema.json +++ b/eppo_metrics_sync/schema/eppo_metric_schema.json @@ -65,7 +65,7 @@ }, "column": { "description": "The column that contains this fact (if not specified, will use each record)", - "type": "string" + "type": ["string", "null"] }, "description": { "description": "User-friendly description of the fact", diff --git a/setup.py b/setup.py index fad5583..e19fcd7 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name='eppo_metrics_sync', - version='0.1.1', + version='0.1.2', packages=find_packages(), install_requires=[ 'PyYAML', 'jsonschema', 'requests'