Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
144 lines
1.9 KiB
JSON
144 lines
1.9 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema",
|
|
"properties": {
|
|
"allOf": {
|
|
"allOf": [
|
|
{
|
|
"type": "boolean"
|
|
},
|
|
{
|
|
"type": "number"
|
|
},
|
|
{
|
|
"type": "string"
|
|
}
|
|
]
|
|
},
|
|
"anyOf": {
|
|
"anyOf": [
|
|
{
|
|
"type": "boolean"
|
|
},
|
|
{
|
|
"type": "number"
|
|
},
|
|
{
|
|
"type": "string"
|
|
}
|
|
]
|
|
},
|
|
"oneOf": {
|
|
"oneOf": [
|
|
{
|
|
"type": "boolean"
|
|
},
|
|
{
|
|
"type": "number"
|
|
},
|
|
{
|
|
"type": "string"
|
|
}
|
|
]
|
|
},
|
|
"array": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
},
|
|
"minItems": 2,
|
|
"maxItems": 3
|
|
},
|
|
"tuple": {
|
|
"type": "array",
|
|
"items": [
|
|
{
|
|
"type": "boolean"
|
|
},
|
|
{
|
|
"type": "number"
|
|
},
|
|
{
|
|
"type": "string"
|
|
}
|
|
],
|
|
"minItems": 2,
|
|
"maxItems": 3
|
|
},
|
|
"const": {
|
|
"const": "xbox"
|
|
},
|
|
"enum": {
|
|
"enum": ["ps4", "ps5"]
|
|
},
|
|
"ifThenElse": {
|
|
"if": {
|
|
"type": "string"
|
|
},
|
|
"then": {
|
|
"const": "x"
|
|
},
|
|
"else": {
|
|
"enum": [1, 2, 3]
|
|
}
|
|
},
|
|
"null": {
|
|
"type": "null"
|
|
},
|
|
"multiple": {
|
|
"type": ["array", "boolean"]
|
|
},
|
|
"objAdditionalTrue": {
|
|
"type": "object",
|
|
"properties": {
|
|
"x": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"additionalProperties": true
|
|
},
|
|
"objAdditionalFalse": {
|
|
"type": "object",
|
|
"properties": {
|
|
"x": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
},
|
|
"objAdditionalNumber": {
|
|
"type": "object",
|
|
"properties": {
|
|
"x": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"additionalProperties": {
|
|
"type": "number"
|
|
}
|
|
},
|
|
"objAdditionalOnly": {
|
|
"type": "object",
|
|
"additionalProperties": {
|
|
"type": "number"
|
|
}
|
|
},
|
|
"patternProps": {
|
|
"type": "object",
|
|
"patternProperties": {
|
|
"^x": {
|
|
"type": "string"
|
|
},
|
|
"^y": {
|
|
"type": "number"
|
|
}
|
|
},
|
|
"properties": {
|
|
"z": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|
|
}
|
|
}
|