changedInput schema / $schema
Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
removedInput schema / properties / icon / anyOf
Removed value: -[
- {
- "additionalProperties": false,
- "properties": {
- "key": {
- "description": "The icon key for PRESET type",
- "type": "string"
- },
- "type": {
- "const": "PRESET",
- "type": "string"
- }
- },
- "required": [
- "type",
- "key"
- ],
- "type": "object"
- },
- {
- "additionalProperties": false,
- "properties": {
- "file": {
- "additionalProperties": false,
- "description": "The file information for FILE type",
- "properties": {
- "fileKey": {
- "description": "The file key for uploaded icon",
- "type": "string"
- }
- },
- "required": [
- "fileKey"
- ],
- "type": "object"
- },
- "type": {
- "const": "FILE",
- "type": "string"
- }
- },
- "required": [
- "type",
- "file"
- ],
- "type": "object"
- }
-]
addedInput schema / properties / icon / oneOf
Added value: +[
+ {
+ "properties": {
+ "key": {
+ "description": "The icon key for PRESET type",
+ "type": "string"
+ },
+ "type": {
+ "const": "PRESET",
+ "type": "string"
+ }
+ },
+ "required": [
+ "type",
+ "key"
+ ],
+ "type": "object"
+ },
+ {
+ "properties": {
+ "file": {
+ "description": "The file information for FILE type",
+ "properties": {
+ "fileKey": {
+ "description": "The file key for uploaded icon",
+ "type": "string"
+ }
+ },
+ "required": [
+ "fileKey"
+ ],
+ "type": "object"
+ },
+ "type": {
+ "const": "FILE",
+ "type": "string"
+ }
+ },
+ "required": [
+ "type",
+ "file"
+ ],
+ "type": "object"
+ }
+]
addedInput schema / properties / icon / type
Added value: +"object"
removedInput schema / properties / numberPrecision / additionalProperties
Removed value: -false
removedInput schema / properties / titleField / anyOf
Removed value: -[
- {
- "additionalProperties": false,
- "properties": {
- "selectionMode": {
- "const": "AUTO",
- "type": "string"
- }
- },
- "required": [
- "selectionMode"
- ],
- "type": "object"
- },
- {
- "additionalProperties": false,
- "properties": {
- "code": {
- "description": "The field code for MANUAL selection mode",
- "type": "string"
- },
- "selectionMode": {
- "const": "MANUAL",
- "type": "string"
- }
- },
- "required": [
- "selectionMode",
- "code"
- ],
- "type": "object"
- }
-]
addedInput schema / properties / titleField / oneOf
Added value: +[
+ {
+ "properties": {
+ "selectionMode": {
+ "const": "AUTO",
+ "type": "string"
+ }
+ },
+ "required": [
+ "selectionMode"
+ ],
+ "type": "object"
+ },
+ {
+ "properties": {
+ "code": {
+ "description": "The field code for MANUAL selection mode",
+ "type": "string"
+ },
+ "selectionMode": {
+ "const": "MANUAL",
+ "type": "string"
+ }
+ },
+ "required": [
+ "selectionMode",
+ "code"
+ ],
+ "type": "object"
+ }
+]
addedInput schema / properties / titleField / type
Added value: +"object"
changedOutput schema / $schema
Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"