changedInput schema / properties / comparison / anyOf
Previous value: -[
- {
- "anyOf": [
- {
- "const": "adjacent",
- "type": "string"
- },
- {
- "properties": {
- "baseline": {
- "type": "string"
- }
- },
- "required": [
- "baseline"
- ],
- "type": "object"
- },
- {
- "properties": {
- "pair": {
- "prefixItems": [
- {
- "type": "string"
- },
- {
- "type": "string"
- }
- ],
- "type": "array"
- }
- },
- "required": [
- "pair"
- ],
- "type": "object"
- },
- {
- "properties": {
- "concurrent_pairs": {
- "properties": {
- "cursor": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ]
- }
- },
- "type": "object"
- }
- },
- "required": [
- "concurrent_pairs"
- ],
- "type": "object"
- }
- ]
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "anyOf": [
+ {
+ "const": "adjacent",
+ "type": "string"
+ },
+ {
+ "properties": {
+ "baseline": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "baseline"
+ ],
+ "type": "object"
+ },
+ {
+ "properties": {
+ "pair": {
+ "items": false,
+ "maxItems": 2,
+ "minItems": 2,
+ "prefixItems": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "string"
+ }
+ ],
+ "type": "array"
+ }
+ },
+ "required": [
+ "pair"
+ ],
+ "type": "object"
+ },
+ {
+ "properties": {
+ "concurrent_pairs": {
+ "properties": {
+ "cursor": {
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ }
+ },
+ "required": [
+ "concurrent_pairs"
+ ],
+ "type": "object"
+ }
+ ]
+ },
+ {
+ "type": "null"
+ }
+]
changedOutput schema / properties / data / anyOf
Previous value: -[
- {
- "additionalProperties": {},
- "properties": {
- "clusters": {
- "items": {
- "additionalProperties": {},
- "properties": {
- "cluster_id": {
- "type": "string"
- },
- "member_cites": {
- "items": {
- "type": "string"
- },
- "type": "array"
- }
- },
- "required": [
- "cluster_id",
- "member_cites"
- ],
- "type": "object"
- },
- "type": "array"
- },
- "comparisons": {
- "items": {
- "additionalProperties": {},
- "properties": {
- "from_cite": {
- "type": "string"
- },
- "ops": {
- "anyOf": [
- {
- "items": {
- "prefixItems": [
- {
- "type": "string"
- },
- {
- "type": "string"
- }
- ],
- "type": "array"
- },
- "type": "array"
- },
- {
- "type": "null"
- }
- ]
- },
- "to_cite": {
- "type": "string"
- }
- },
- "required": [
- "from_cite",
- "to_cite",
- "ops"
- ],
- "type": "object"
- },
- "type": "array"
- },
- "definitions": {
- "items": {
- "additionalProperties": {},
- "properties": {
- "cite": {
- "type": "string"
- },
- "defined_within": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ]
- },
- "instrument_id": {
- "type": "string"
- },
- "qualifier": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ]
- },
- "resolution_status": {
- "type": "string"
- },
- "resolved_definition": {
- "type": "string"
- },
- "verbatim_definition": {
- "type": "string"
- }
- },
- "required": [
- "instrument_id",
- "qualifier",
- "defined_within",
- "cite",
- "verbatim_definition",
- "resolved_definition",
- "resolution_status"
- ],
- "type": "object"
- },
- "type": "array"
- },
- "references_in": {
- "items": {
- "additionalProperties": {},
- "properties": {
- "cite": {
- "type": "string"
- },
- "instrument_id": {
- "type": "string"
- }
- },
- "required": [
- "instrument_id",
- "cite"
- ],
- "type": "object"
- },
- "type": "array"
- },
- "term": {
- "type": "string"
- },
- "view": {
- "type": "string"
- },
- "views": {
- "additionalProperties": {},
- "properties": {
- "concurrent": {
- "items": {
- "additionalProperties": {},
- "properties": {
- "cite": {
- "type": "string"
- }
- },
- "required": [
- "cite"
- ],
- "type": "object"
- },
- "type": "array"
- },
- "evolution": {
- "items": {
- "additionalProperties": {},
- "properties": {
- "cite": {
- "type": "string"
- }
- },
- "required": [
- "cite"
- ],
- "type": "object"
- },
- "type": "array"
- }
- },
- "required": [
- "evolution",
- "concurrent"
- ],
- "type": "object"
- }
- },
- "required": [
- "term",
- "view",
- "definitions",
- "clusters",
- "views",
- "comparisons",
- "references_in"
- ],
- "type": "object"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "additionalProperties": {},
+ "properties": {
+ "clusters": {
+ "items": {
+ "additionalProperties": {},
+ "properties": {
+ "cluster_id": {
+ "type": "string"
+ },
+ "member_cites": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "cluster_id",
+ "member_cites"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "comparisons": {
+ "items": {
+ "additionalProperties": {},
+ "properties": {
+ "from_cite": {
+ "type": "string"
+ },
+ "ops": {
+ "anyOf": [
+ {
+ "items": {
+ "items": false,
+ "maxItems": 2,
+ "minItems": 2,
+ "prefixItems": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "string"
+ }
+ ],
+ "type": "array"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "to_cite": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "from_cite",
+ "to_cite",
+ "ops"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "definitions": {
+ "items": {
+ "additionalProperties": {},
+ "properties": {
+ "cite": {
+ "type": "string"
+ },
+ "defined_within": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "instrument_id": {
+ "type": "string"
+ },
+ "qualifier": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "resolution_status": {
+ "type": "string"
+ },
+ "resolved_definition": {
+ "type": "string"
+ },
+ "verbatim_definition": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "instrument_id",
+ "qualifier",
+ "defined_within",
+ "cite",
+ "verbatim_definition",
+ "resolved_definition",
+ "resolution_status"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "references_in": {
+ "items": {
+ "additionalProperties": {},
+ "properties": {
+ "cite": {
+ "type": "string"
+ },
+ "instrument_id": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "instrument_id",
+ "cite"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "term": {
+ "type": "string"
+ },
+ "view": {
+ "type": "string"
+ },
+ "views": {
+ "additionalProperties": {},
+ "properties": {
+ "concurrent": {
+ "items": {
+ "additionalProperties": {},
+ "properties": {
+ "cite": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "cite"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "evolution": {
+ "items": {
+ "additionalProperties": {},
+ "properties": {
+ "cite": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "cite"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "evolution",
+ "concurrent"
+ ],
+ "type": "object"
+ }
+ },
+ "required": [
+ "term",
+ "view",
+ "definitions",
+ "clusters",
+ "views",
+ "comparisons",
+ "references_in"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+]