8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
s/tuple
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and t 8000 he 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
The current definition for s/tuple is such that transforming (s/tuple ::sort-column ::sort-order) to json-schema results in
(s/tuple ::sort-column ::sort-order)
"sort-by": { "type": { "type": "array", "items": [ { "type": "array", "items": { "type": "string" }, "description": "A tuple of [axis, column] describing a log-format column" }, { "enum": ["desc", "asc"] } ] } }
The correct definition uses anyOf.
anyOf
"sort-by": { "type": { "type": "array", "items": { "anyOf": [ { "type": "array", "items": { "type": "string" }, "description": "A tuple of [axis, column] describing a log-format column" }, { "enum": ["desc", "asc"] } ] } } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The current definition for
s/tuple
is such that transforming(s/tuple ::sort-column ::sort-order)
to json-schema results inThe correct definition uses
anyOf
.The text was updated successfully, but these errors were encountered: