changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "name": {
+ "description": "Searched schema name (case-insensitive)",
+ "type": "string"
+ },
+ "result": {
+ "oneOf": [
+ {
+ "description": "No match found",
+ "type": "null"
+ },
+ {
+ "properties": {
+ "description": {
+ "description": "Schema description",
+ "type": "string"
+ },
+ "fileMatch": {
+ "description": "Glob patterns matching filenames",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "name": {
+ "description": "Schema name",
+ "type": "string"
+ },
+ "url": {
+ "description": "Schema URL",
+ "type": "string"
+ },
+ "versions": {
+ "additionalProperties": {
+ "type": "string"
+ },
+ "description": "Schema versions mapping",
+ "type": "object"
+ }
+ },
+ "required": [
+ "name",
+ "url"
+ ],
+ "type": "object"
+ }
+ ]
+ }
+ },
+ "required": [
+ "name",
+ "result"
+ ],
+ "type": "object"
+}