Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Update sign template signer input #356

Merged
merged 4 commits into from
Sep 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion content/schemas/template_signer_input.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ allOf:
- date
- text
- checkbox
- attachment
- radio
- dropdown
description: >-
Expand Down Expand Up @@ -109,4 +110,11 @@ allOf:
type: number
example: 0.05311728090109673
description: Relative height to the
page the input is on, ranging from 0 to 1.
page the input is on, ranging from 0 to 1.

label:
type: string
description: The label field is used especially for text,
attachment, radio, and checkbox type inputs.
nullable: true
example: Legal name
7 changes: 7 additions & 0 deletions openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -33048,6 +33048,7 @@
"date",
"text",
"checkbox",
"attachment",
"radio",
"dropdown"
],
Expand Down Expand Up @@ -33142,6 +33143,12 @@
"description": "Relative height to the page the input is on, ranging from 0 to 1."
}
}
},
"label": {
"type": "string",
"description": "The label field is used especially for text, attachment, radio, and checkbox type inputs.",
"nullable": true,
"example": "Legal name"
}
}
}
Expand Down