Skip to content

Commit c4e03f4

Browse files
Merge pull request #25 from Eppo-exp/malo/fix-null-fact-column
Make fact column nullable
2 parents befe6d3 + 27c3de9 commit c4e03f4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

eppo_metrics_sync/schema/eppo_metric_schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
},
6666
"column": {
6767
"description": "The column that contains this fact (if not specified, will use each record)",
68-
"type": "string"
68+
"type": ["string", "null"]
6969
},
7070
"description": {
7171
"description": "User-friendly description of the fact",

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name='eppo_metrics_sync',
5-
version='0.1.1',
5+
version='0.1.2',
66
packages=find_packages(),
77
install_requires=[
88
'PyYAML', 'jsonschema', 'requests'

0 commit comments

Comments
 (0)