@salesforce/plugin-limits
Version:
commands to display api limits to your org
26 lines (25 loc) • 531 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$ref": "#/definitions/ApiLimits",
"definitions": {
"ApiLimits": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"max": {
"type": "number"
},
"remaining": {
"type": "number"
}
},
"required": ["name", "max", "remaining"],
"additionalProperties": false
}
}
}
}