removedInput schema / allOf
Removed value: -[
- {
- "if": {
- "properties": {
- "kind": {
- "const": "linear"
- }
- }
- },
- "then": {
- "required": [
- "linear"
- ]
- }
- },
- {
- "if": {
- "properties": {
- "kind": {
- "const": "circular"
- }
- }
- },
- "then": {
- "required": [
- "circular"
- ]
- }
- },
- {
- "if": {
- "properties": {
- "kind": {
- "const": "grid"
- }
- }
- },
- "then": {
- "required": [
- "grid"
- ]
- }
- }
-]
removedInput schema / properties / grid / properties / x / description
Removed value: -"First grid axis."
removedInput schema / properties / grid / properties / x / properties
Removed value: -{
- "count": {
- "minimum": 2,
- "type": "integer"
- },
- "direction": {
- "items": {
- "type": "number"
- },
- "maxItems": 3,
- "minItems": 3,
- "type": "array"
- },
- "spacing": {
- "type": "number"
- }
-}
removedInput schema / properties / grid / properties / x / required
Removed value: -[
- "count",
- "direction",
- "spacing"
-]
removedInput schema / properties / grid / properties / y / description
Removed value: -"Second grid axis."
removedInput schema / properties / grid / properties / y / properties
Removed value: -{
- "count": {
- "minimum": 2,
- "type": "integer"
- },
- "direction": {
- "items": {
- "type": "number"
- },
- "maxItems": 3,
- "minItems": 3,
- "type": "array"
- },
- "spacing": {
- "type": "number"
- }
-}
removedInput schema / properties / grid / properties / y / required
Removed value: -[
- "count",
- "direction",
- "spacing"
-]