Skip to content

Commit

Permalink
Merge pull request #25 from Eppo-exp/malo/fix-null-fact-column
Browse files Browse the repository at this point in the history
Make fact column nullable
  • Loading branch information
MaloChevillotte authored Dec 12, 2024
2 parents befe6d3 + 27c3de9 commit c4e03f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion eppo_metrics_sync/schema/eppo_metric_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit c4e03f4

Please sign in to comment.