Properties
| Name | Type | Description |
|---|---|---|
| anniversary_date | object | |
| quarter_anniversary_date | object | |
| quota | integer | Tokens for the quarter |
| remaining | integer | Tokens remaining for the quarter |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/cloudforce-one_quota",
"title": "Quota",
"properties": {
"anniversary_date": {
"allOf": [
{
"$ref": "#/components/schemas/cloudforce-one_time"
},
{
"description": "Anniversary date is when annual quota limit is refresh"
},
{
"example": "2022-01-01T00:00:00Z"
}
]
},
"quarter_anniversary_date": {
"allOf": [
{
"$ref": "#/components/schemas/cloudforce-one_time"
},
{
"description": "Quater anniversary date is when quota limit is refreshed each quarter"
},
{
"example": "2022-04-01T00:00:00Z"
}
]
},
"quota": {
"description": "Tokens for the quarter",
"example": 120,
"type": "integer"
},
"remaining": {
"description": "Tokens remaining for the quarter",
"example": 64,
"type": "integer"
}
},
"type": "object"
}