Skip to content

Instantly share code, notes, and snippets.

@wilkmaia
Created April 6, 2022 17:02
Show Gist options
  • Save wilkmaia/85f1e77316a00418abf6703c5ac664aa to your computer and use it in GitHub Desktop.
Save wilkmaia/85f1e77316a00418abf6703c5ac664aa to your computer and use it in GitHub Desktop.
Benchmark schema
{
"definitions": {},
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "response",
"type": "object",
"additionalProperties": false,
"required": [
"series"
],
"properties": {
"series": {
"$id": "#/properties/series",
"type": "array",
"items": {
"$id": "#/properties/series/items",
"type": "array",
"minItems": 2,
"items": {
"$id": "#/properties/series/items/items",
"type": [
"number",
"boolean",
"string",
"null"
],
"minLength": 1
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment