changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "fragment": {
+ "type": "string"
+ },
+ "host": {
+ "type": "string"
+ },
+ "path": {
+ "type": "string"
+ },
+ "port": {
+ "description": "Port, or empty if the scheme default.",
+ "type": "string"
+ },
+ "query": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "key": {
+ "type": "string"
+ },
+ "value": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "key",
+ "value"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "scheme": {
+ "type": "string"
+ },
+ "username": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "scheme",
+ "host",
+ "port",
+ "path",
+ "query",
+ "fragment"
+ ],
+ "type": "object"
+}