You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sources/platform/actors/development/actor_definition/input_schema/specification.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -446,8 +446,8 @@ Properties:
446
446
|`properties`| Object | No | Defines the sub-schema properties for the object used for validation and UI rendering (`schemaBased` editor). See more info below. |
447
447
|`additionalProperties`| Boolean | No | Controls if sub-properties not listed in `properties` are allowed. Defaults to `true`. Set to `false` to make requests with extra properties fail. |
448
448
|`required`| String array | No | An array of sub-properties keys that are required. <br />Note: This applies only if the object field itself is present. If the object field is optional and not included in the input, its required subfields are not validated. |
449
-
|`patternKey`| String | No |_Deprecated_ (see [more information](#deprecated-properties)). <br/>Regular expression that will be used to validate the keys of the object.|
450
-
|`patternValue`| String | No |_Deprecated_ (see [more information](#deprecated-properties)). <br/>Regular expression that will be used to validate the values of object.|
449
+
|`patternKey`| String | No |_Deprecated_ (see [migration information](#deprecation-of-patternkey-and-patternvalue)). <br/>Regular expression that will be used to validate the keys of the object. |
450
+
|`patternValue`| String | No |_Deprecated_ (see [migration information](#deprecation-of-patternkey-and-patternvalue)). <br/>Regular expression that will be used to validate the values of object. |
451
451
452
452
#### Object fields validation
453
453
@@ -654,8 +654,8 @@ Properties:
654
654
|`nullable`| Boolean | No | Specifies whether null is <br/>an allowed value. |
655
655
|`items`| object | No | Specifies format of the items of the array, useful mainly for multiselect and for `schemaBased` editor (see below). |
656
656
|`isSecret`| Boolean | No | Specifies whether the input field will be stored encrypted. Only available with `json` and `hidden` editors. |
657
-
|`patternKey`| String | No |_Deprecated_- see [migration guide](#deprecated-properties) for alternatives. <br/>Regular expression that will be used to validate the keys of items in the array. <br/>Works only with `keyValue` <br/>editor.|
658
-
|`patternValue`| String | No |_Deprecated_- see [migration guide](#deprecated-properties) for alternatives. <br/>Regular expression that will be used to validate the values of items in the array. <br/>Works only with `keyValue` and <br/>`stringList` editors. |
657
+
|`patternKey`| String | No |_Deprecated_(see [migration information](#deprecation-of-patternkey-and-patternvalue)). <br/>Regular expression that will be used to validate the keys of items in the array. <br/>Works only with `keyValue` <br/>editor. |
658
+
|`patternValue`| String | No |_Deprecated_(see [migration information](#deprecation-of-patternkey-and-patternvalue)). <br/>Regular expression that will be used to validate the values of items in the array. <br/>Works only with `keyValue` and <br/>`stringList` editors. |
659
659
660
660
661
661
Usage of this field is based on the selected editor:
@@ -980,13 +980,13 @@ This setting defines runtime access only and doesn't change field visibility or
980
980
### Deprecation of `patternKey` and `patternValue`
981
981
982
982
::::warning Deprecation notice
983
-
**The following properties are deprecated and will continue to be supported until May 31, 2026:**
983
+
**The following properties are deprecated and will only be supported until May 31, 2026:**
984
984
985
985
-`patternKey` - Used to validate keys in objects and arrays
986
986
-`patternValue` - Used to validate values in objects and arrays
987
987
::::
988
988
989
-
We are deprecating these properties to better align with the JSON schema specification. By moving to standard JSON schema, we provide a more consistent experience that matches industry standards while enabling more powerful validation capabilities through the ability to define sub-properties.
989
+
These properties are being deprecated to better align with the JSON schema specification. By moving to standard JSON schema, a more consistent experience is provided that matches industry standards while enabling more powerful validation capabilities through the ability to define sub-properties.
0 commit comments