diff --git a/docs/api-reference/spec/firework-v2-openapi.json b/docs/api-reference/spec/firework-v2-openapi.json index 07745aa..a700e99 100644 --- a/docs/api-reference/spec/firework-v2-openapi.json +++ b/docs/api-reference/spec/firework-v2-openapi.json @@ -7534,6 +7534,14 @@ }, "TenantData": { "properties": { + "description": { + "description": "The Tenant's purpose / description", + "type": "string" + }, + "global_search_calls_limit": { + "description": "The number of API calls allowed for the tenant.", + "type": "integer" + }, "industry": { "description": "The Tenant's industry", "enum": [ @@ -7555,21 +7563,19 @@ "description": "The Tenant display name", "type": "string" }, - "permissions": { - "items": { - "type": "string" - }, - "type": "array" + "number_of_employees": { + "description": "The number of employees for the tenant", + "type": "integer" }, - "type": { - "description": "The Tenant's type", - "type": "string" + "prevent_global_search": { + "type": "boolean" } }, "required": [ + "description", "industry", "name", - "type" + "number_of_employees" ], "type": "object" }, @@ -8253,4 +8259,4 @@ } }, "x-original-swagger-version": "2.0" -} \ No newline at end of file +} diff --git a/docs/api-reference/spec/firework-v2-swagger.json b/docs/api-reference/spec/firework-v2-swagger.json index fd416be..58a86c1 100644 --- a/docs/api-reference/spec/firework-v2-swagger.json +++ b/docs/api-reference/spec/firework-v2-swagger.json @@ -1764,43 +1764,11 @@ "properties": { "description": { "description": "The Tenant's purpose / description", - "example": "nullable string", - "type": [ - "string", - "null" - ] + "type": "string" }, "global_search_calls_limit": { - "description": "The number of global search api calls allowed for the tenant", - "example": "nullable integer", - "type": [ - "integer", - "null" - ] - }, - "identifier_limit": { - "description": "The number of identifiers allowed for the tenant", - "example": "nullable integer", - "type": [ - "integer", - "null" - ] - }, - "identifier_rotation_limit": { - "description": "The number of identifiers rotations permitted per month", - "example": "nullable integer", - "type": [ - "integer", - "null" - ] - }, - "identities_limit": { - "description": "The number of identities allowed for the tenant", - "example": "nullable integer", - "type": [ - "integer", - "null" - ] + "description": "The number of API calls allowed for the tenant.", + "type": "integer" }, "industry": { "description": "The Tenant's industry", @@ -1825,29 +1793,17 @@ }, "number_of_employees": { "description": "The number of employees for the tenant", - "example": "nullable integer", - "type": [ - "integer", - "null" - ] - }, - "permissions": { - "items": { - "type": "string" - }, - "type": "array" + "type": "integer" }, - "type": { - "description": "The Tenant's type", - "type": "string" + "prevent_global_search": { + "type": "boolean" } }, "required": [ "description", "industry", "name", - "number_of_employees", - "type" + "number_of_employees" ], "type": "object" },