Skip to content

Commit 17707ec

Browse files
committed
small review fixes
1 parent 1c8896c commit 17707ec

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

  • sources/platform/actors/development/actor_definition/input_schema

sources/platform/actors/development/actor_definition/input_schema/specification.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -446,8 +446,8 @@ Properties:
446446
| `properties` | Object | No | Defines the sub-schema properties for the object used for validation and UI rendering (`schemaBased` editor). See more info below. |
447447
| `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. |
448448
| `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. |
451451

452452
#### Object fields validation
453453

@@ -654,8 +654,8 @@ Properties:
654654
| `nullable` | Boolean | No | Specifies whether null is <br/>an allowed value. |
655655
| `items` | object | No | Specifies format of the items of the array, useful mainly for multiselect and for `schemaBased` editor (see below). |
656656
| `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. |
659659

660660

661661
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
980980
### Deprecation of `patternKey` and `patternValue`
981981

982982
::::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:**
984984

985985
- `patternKey` - Used to validate keys in objects and arrays
986986
- `patternValue` - Used to validate values in objects and arrays
987987
::::
988988

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.
990990

991991
#### Alternatives for arrays
992992

0 commit comments

Comments
 (0)