Skip to content
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
26 changes: 16 additions & 10 deletions docs/api-reference/spec/firework-v2-openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": [
Expand All @@ -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"
},
Expand Down Expand Up @@ -8253,4 +8259,4 @@
}
},
"x-original-swagger-version": "2.0"
}
}
58 changes: 7 additions & 51 deletions docs/api-reference/spec/firework-v2-swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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"
},
Expand Down