{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/OrganizationStatusGetObject",
"title": "OrganizationStatusGetObject",
"type": "object",
"required": [
"isLargeOrg",
"largeOrgThresholdPercentage"
],
"properties": {
"isLargeOrg": {
"type": "boolean",
"example": true,
"description": "`true` if the organization is categorized as large organization."
},
"largeOrgThresholdPercentage": {
"type": "integer",
"example": 90,
"description": "The threshold percentage represents the percentage of the threshold reached to categorize an organization as a large organization."
}
}
}