From 670b89d785f97d503dbba17134e773dfadb41564 Mon Sep 17 00:00:00 2001 From: Minh Nguyen Cong Date: Wed, 6 Sep 2023 15:39:28 +0200 Subject: [PATCH] feat: Update sign template signer input (#356) * feat: Update sign template signer input * Update openapi.json * Update openapi.json --- content/schemas/template_signer_input.yml | 10 +++++++++- openapi.json | 7 +++++++ 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/content/schemas/template_signer_input.yml b/content/schemas/template_signer_input.yml index 1c3a4030..bbd91a55 100644 --- a/content/schemas/template_signer_input.yml +++ b/content/schemas/template_signer_input.yml @@ -18,6 +18,7 @@ allOf: - date - text - checkbox + - attachment - radio - dropdown description: >- @@ -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 diff --git a/openapi.json b/openapi.json index 3b7a2186..beb89db9 100644 --- a/openapi.json +++ b/openapi.json @@ -33048,6 +33048,7 @@ "date", "text", "checkbox", + "attachment", "radio", "dropdown" ], @@ -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" } } }