-
Notifications
You must be signed in to change notification settings - Fork 77
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WIP removed the apparently-unnecessary anyOf blocks #338
base: main
Are you sure you want to change the base?
Conversation
I think you should include the indent changes here too. I usually do a round-trip in python but I think people also use |
sigmf-schema.json
Outdated
@@ -76,7 +91,7 @@ | |||
"default": 0, | |||
"minimum": 0, | |||
"!comment": "The maximum value for this property is equal to 2^63 - 1, making it easy to fit into a signed 64-bit integer.", | |||
"maximum": 9223372036854775807, | |||
"maximum": 9223372036854776000, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think you meant to change these. This number is 2**63 + 192
. Was previously max signed integer.
:-O blames |
I suppose if we were smart we would use an integer small enough such that |
I now notice that the jq-ification rewrote 1e12 -> 1000000000000 which I dislike |
Note that (for clarity on the substantive edits) this does not include appropriate indent-level changes.
Closes #337