addedInput schema / $schema
Added value: +"http://json-schema.org/draft-07/schema#"
addedInput schema / additionalProperties
Added value: +false
addedInput schema / allOf
Added value: +[
+ {
+ "if": {
+ "properties": {
+ "artifact_type": {
+ "const": "report"
+ }
+ },
+ "required": [
+ "artifact_type"
+ ]
+ },
+ "then": {
+ "required": [
+ "body"
+ ]
+ }
+ },
+ {
+ "if": {
+ "properties": {
+ "artifact_type": {
+ "const": "table"
+ }
+ },
+ "required": [
+ "artifact_type"
+ ]
+ },
+ "then": {
+ "required": [
+ "columns",
+ "rows"
+ ]
+ }
+ },
+ {
+ "if": {
+ "properties": {
+ "artifact_type": {
+ "const": "link"
+ }
+ },
+ "required": [
+ "artifact_type"
+ ]
+ },
+ "then": {
+ "required": [
+ "url",
+ "link_kind"
+ ]
+ }
+ }
+]
addedInput schema / properties / artifact_type / enum
Added value: +[
+ "report",
+ "table",
+ "link"
+]
removedInput schema / properties / artifact_type / title
Removed value: -"Artifact Type"
removedInput schema / properties / body / default
Removed value: -""
addedInput schema / properties / body / maxLength
Added value: +60000
addedInput schema / properties / body / minLength
Added value: +1
removedInput schema / properties / body / title
Removed value: -"Body"
removedInput schema / properties / columns / anyOf
Removed value: -[
- {
- "items": {
- "type": "string"
- },
- "type": "array"
- },
- {
- "type": "null"
- }
-]
removedInput schema / properties / columns / default
Removed value: -null
addedInput schema / properties / columns / items
Added value: +{
+ "maxLength": 256,
+ "minLength": 1,
+ "type": "string"
+}
addedInput schema / properties / columns / maxItems
Added value: +64
addedInput schema / properties / columns / minItems
Added value: +1
removedInput schema / properties / columns / title
Removed value: -"Columns"
addedInput schema / properties / columns / type
Added value: +"array"
addedInput schema / properties / key / maxLength
Added value: +128
addedInput schema / properties / key / minLength
Added value: +1
addedInput schema / properties / key / pattern
Added value: +"^[A-Za-z0-9][A-Za-z0-9_.-]{0,127}$"
removedInput schema / properties / key / title
Removed value: -"Key"
removedInput schema / properties / link_kind / default
Removed value: -""
addedInput schema / properties / link_kind / enum
Added value: +[
+ "preview",
+ "dashboard",
+ "document"
+]
removedInput schema / properties / link_kind / title
Removed value: -"Link Kind"
addedInput schema / properties / poster / maxLength
Added value: +256
addedInput schema / properties / poster / minLength
Added value: +1
removedInput schema / properties / poster / title
Removed value: -"Poster"
removedInput schema / properties / rows / anyOf
Removed value: -[
- {
- "items": {
- "items": {
- "type": "string"
- },
- "type": "array"
- },
- "type": "array"
- },
- {
- "type": "null"
- }
-]
removedInput schema / properties / rows / default
Removed value: -null
addedInput schema / properties / rows / items
Added value: +{
+ "items": {
+ "maxLength": 4096,
+ "type": "string"
+ },
+ "maxItems": 64,
+ "type": "array"
+}
addedInput schema / properties / rows / maxItems
Added value: +4096
removedInput schema / properties / rows / title
Removed value: -"Rows"
addedInput schema / properties / rows / type
Added value: +"array"
addedInput schema / properties / task_id / maxLength
Added value: +256
addedInput schema / properties / task_id / minLength
Added value: +1
addedInput schema / properties / task_id / pattern
Added value: +"^[A-Za-z0-9_.:-]+$"
removedInput schema / properties / task_id / title
Removed value: -"Task Id"
removedInput schema / properties / url / default
Removed value: -""
addedInput schema / properties / url / maxLength
Added value: +4096
addedInput schema / properties / url / minLength
Added value: +1
removedInput schema / properties / url / title
Removed value: -"Url"
changedInput schema / title
Previous value: -"bernstein_post_artifactArguments"New value: +"bernstein_post_artifact"