From 36a3df4e31cd9889792d64a50648ff273913efbc Mon Sep 17 00:00:00 2001 From: Minh Nguyen Cong Date: Wed, 6 Sep 2023 12:12:14 +0200 Subject: [PATCH] feat: Add type field to sign template (#355) * feat: Add type field to sign template * Add openapi.json file --- content/responses/sign_template.yml | 6 ++++++ openapi.json | 8 ++++++++ 2 files changed, 14 insertions(+) diff --git a/content/responses/sign_template.yml b/content/responses/sign_template.yml index 855cc7b2..3216d11f 100644 --- a/content/responses/sign_template.yml +++ b/content/responses/sign_template.yml @@ -10,6 +10,12 @@ description: |- A Box Sign template object allOf: - properties: + type: + type: string + example: sign-template + enum: + - sign-template + description: object type id: type: string example: 4206996024-14944f75-c34b-478a-95a1-264b1ff80d35 diff --git a/openapi.json b/openapi.json index 3e088ed7..3b7a2186 100644 --- a/openapi.json +++ b/openapi.json @@ -32712,6 +32712,14 @@ "allOf": [ { "properties": { + "type": { + "type": "string", + "example": "sign-template", + "enum": [ + "sign-template" + ], + "description": "object type" + }, "id": { "type": "string", "example": "4206996024-14944f75-c34b-478a-95a1-264b1ff80d35",