changedInput schema / properties / target / anyOf
Previous value: -[
- {
- "properties": {
- "kind": {
- "const": "player",
- "type": "string"
- },
- "player_id": {
- "description": "Peer or other agent's player id (from who_is_here).",
- "minLength": 1,
- "type": "string"
- }
- },
- "required": [
- "kind",
- "player_id"
- ],
- "type": "object"
- },
- {
- "properties": {
- "kind": {
- "const": "coord",
- "type": "string"
- },
- "position": {
- "anyOf": [
- {
- "items": [
- {
- "type": "number"
- },
- {
- "type": "number"
- },
- {
- "type": "number"
- }
- ],
- "type": "array"
- },
- {
- "properties": {
- "x": {
- "type": "number"
- },
- "y": {
- "type": "number"
- },
- "z": {
- "type": "number"
- }
- },
- "required": [
- "x",
- "y",
- "z"
- ],
- "type": "object"
- }
- ],
- "description": "World [x, y, z] or {x, y, z} you want a tighter look at."
- }
- },
- "required": [
- "kind",
- "position"
- ],
- "type": "object"
- }
-]New value: +[
+ {
+ "additionalProperties": false,
+ "properties": {
+ "kind": {
+ "const": "player",
+ "type": "string"
+ },
+ "player_id": {
+ "description": "Peer or other agent's player id (from who_is_here).",
+ "minLength": 1,
+ "type": "string"
+ }
+ },
+ "required": [
+ "kind",
+ "player_id"
+ ],
+ "type": "object"
+ },
+ {
+ "additionalProperties": false,
+ "properties": {
+ "kind": {
+ "const": "coord",
+ "type": "string"
+ },
+ "position": {
+ "anyOf": [
+ {
+ "items": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "number"
+ },
+ {
+ "type": "number"
+ }
+ ],
+ "maxItems": 3,
+ "minItems": 3,
+ "type": "array"
+ },
+ {
+ "additionalProperties": false,
+ "properties": {
+ "x": {
+ "type": "number"
+ },
+ "y": {
+ "type": "number"
+ },
+ "z": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "x",
+ "y",
+ "z"
+ ],
+ "type": "object"
+ }
+ ],
+ "description": "World [x, y, z] or {x, y, z} you want a tighter look at."
+ }
+ },
+ "required": [
+ "kind",
+ "position"
+ ],
+ "type": "object"
+ }
+]