Skip to content

Commit 5b5d3de

Browse files
authored
feat: add security settings properties on sign template schema (#518)
1 parent 18010ac commit 5b5d3de

File tree

3 files changed

+39
-3
lines changed

3 files changed

+39
-3
lines changed

openapi.json

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"url": "http://www.apache.org/licenses/LICENSE-2.0"
1515
},
1616
"version": "2024.0",
17-
"x-box-commit-hash": "27a1ebc2ec"
17+
"x-box-commit-hash": "8c0223a248"
1818
},
1919
"servers": [
2020
{
@@ -37272,6 +37272,24 @@
3727237272
"description": "An identifier for the signer. This can be used to identify a signer within the template.",
3727337273
"type": "string",
3727437274
"example": "RJZYYVPR"
37275+
},
37276+
"is_password_required": {
37277+
"description": "If true for signers with a defined email, the password provided when the template was created is used by default. \nIf true for signers without a specified / defined email, the creator needs to provide a password when using the template.",
37278+
"type": "boolean",
37279+
"example": true,
37280+
"nullable": true
37281+
},
37282+
"is_phone_number_required": {
37283+
"description": "If true for signers with a defined email, the phone number provided when the template was created is used by default. \nIf true for signers without a specified / defined email, the template creator needs to provide a phone number when creating a request.",
37284+
"type": "boolean",
37285+
"example": true,
37286+
"nullable": true
37287+
},
37288+
"login_required": {
37289+
"description": "If true, the signer is required to login to access the document.",
37290+
"type": "boolean",
37291+
"example": true,
37292+
"nullable": true
3727537293
}
3727637294
},
3727737295
"title": "Signer fields for Templates"

openapi/openapi-v2025.0.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"url": "http://www.apache.org/licenses/LICENSE-2.0"
1515
},
1616
"version": "2025.0",
17-
"x-box-commit-hash": "27a1ebc2ec"
17+
"x-box-commit-hash": "8c0223a248"
1818
},
1919
"servers": [
2020
{

openapi/openapi.json

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"url": "http://www.apache.org/licenses/LICENSE-2.0"
1515
},
1616
"version": "2024.0",
17-
"x-box-commit-hash": "27a1ebc2ec"
17+
"x-box-commit-hash": "8c0223a248"
1818
},
1919
"servers": [
2020
{
@@ -37272,6 +37272,24 @@
3727237272
"description": "An identifier for the signer. This can be used to identify a signer within the template.",
3727337273
"type": "string",
3727437274
"example": "RJZYYVPR"
37275+
},
37276+
"is_password_required": {
37277+
"description": "If true for signers with a defined email, the password provided when the template was created is used by default. \nIf true for signers without a specified / defined email, the creator needs to provide a password when using the template.",
37278+
"type": "boolean",
37279+
"example": true,
37280+
"nullable": true
37281+
},
37282+
"is_phone_number_required": {
37283+
"description": "If true for signers with a defined email, the phone number provided when the template was created is used by default. \nIf true for signers without a specified / defined email, the template creator needs to provide a phone number when creating a request.",
37284+
"type": "boolean",
37285+
"example": true,
37286+
"nullable": true
37287+
},
37288+
"login_required": {
37289+
"description": "If true, the signer is required to login to access the document.",
37290+
"type": "boolean",
37291+
"example": true,
37292+
"nullable": true
3727537293
}
3727637294
},
3727737295
"title": "Signer fields for Templates"

0 commit comments

Comments
 (0)