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
It's a list of objects, not just a single object. This leads to crashing clients e.g. in python. See fix below.
@@ -1174,10 +1174,17 @@ paths:
type: string
description: Unique key to be used in the signing form URL.
values:
- type: object- description: >-- An array of objects with pre-filled values for the- submission. Use field names for keys of the object.+ type: array+ description: An array of pre-filled values for the submission.+ items:+ type: object+ properties:+ field:+ type: string+ description: Document template field name+ value:+ type: string+ description: Pre-filled value of the field.
metadata:
type: object
ua:
@@ -1661,10 +1668,17 @@ paths:
type: string
description: Unique key to be used in the signing form URL.
values:
- type: object- description: >-- An array of objects with pre-filled values for the- submission. Use field names for keys of the object.+ type: array+ description: An array of pre-filled values for the submission.+ items:+ type: object+ properties:+ field:+ type: string+ description: Document template field name+ value:+ type: string+ description: Pre-filled value of the field.
metadata:
type: object
ua:
The text was updated successfully, but these errors were encountered:
It's a list of objects, not just a single object. This leads to crashing clients e.g. in python. See fix below.
The text was updated successfully, but these errors were encountered: