|
| 1 | +{ |
| 2 | + "$schema": "http://json-schema.org/draft-08/schema#", |
| 3 | + "$id": "https://json-schema.org/draft-08/applicator", |
| 4 | + "$recursiveAnchor": true, |
| 5 | + "$vocabulary": { |
| 6 | + "https://json-schema.org/draft-08/vocabularies/core": true, |
| 7 | + "https://json-schema.org/draft-08/vocabularies/applicator": true |
| 8 | + }, |
| 9 | + |
| 10 | + "title": "Applicator vocabulary meta-schema", |
| 11 | + "$defs": { |
| 12 | + "schemaArray": { |
| 13 | + "type": "array", |
| 14 | + "minItems": 1, |
| 15 | + "items": { "$recursiveRef": "#" } |
| 16 | + } |
| 17 | + }, |
| 18 | + "properties": { |
| 19 | + "additionalItems": { "$recursiveRef": "#" }, |
| 20 | + "unevaluatedItems": { "$recursiveRef": "#" }, |
| 21 | + "items": { |
| 22 | + "anyOf": [ |
| 23 | + { "$recursiveRef": "#" }, |
| 24 | + { "$ref": "#/$defs/schemaArray" } |
| 25 | + ] |
| 26 | + }, |
| 27 | + "contains": { "$recursiveRef": "#" }, |
| 28 | + "additionalProperties": { "$recursiveRef": "#" }, |
| 29 | + "unevaluatedProperties": { |
| 30 | + "type": "object", |
| 31 | + "additionalProperties": { |
| 32 | + "$recursiveRef": "#" |
| 33 | + } |
| 34 | + }, |
| 35 | + "properties": { |
| 36 | + "type": "object", |
| 37 | + "additionalProperties": { "$recursiveRef": "#" }, |
| 38 | + "default": {} |
| 39 | + }, |
| 40 | + "patternProperties": { |
| 41 | + "type": "object", |
| 42 | + "additionalProperties": { "$recursiveRef": "#" }, |
| 43 | + "propertyNames": { "format": "regex" }, |
| 44 | + "default": {} |
| 45 | + }, |
| 46 | + "dependentSchemas": { |
| 47 | + "type": "object", |
| 48 | + "additionalProperties": { |
| 49 | + "$recursiveRef": "#" |
| 50 | + } |
| 51 | + }, |
| 52 | + "propertyNames": { "$recursiveRef": "#" }, |
| 53 | + "if": { "$recursiveRef": "#" }, |
| 54 | + "then": { "$recursiveRef": "#" }, |
| 55 | + "else": { "$recursiveRef": "#" }, |
| 56 | + "allOf": { "$ref": "#/$defs/schemaArray" }, |
| 57 | + "anyOf": { "$ref": "#/$defs/schemaArray" }, |
| 58 | + "oneOf": { "$ref": "#/$defs/schemaArray" }, |
| 59 | + "not": { "$recursiveRef": "#" } |
| 60 | + } |
| 61 | +} |
0 commit comments