{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/censys/refs/heads/main/json-schema/platform-autoreplenishconfig-schema.json", "title": "AutoReplenishConfig", "description": "AutoReplenishConfig schema from Censys Platform API", "type": "object", "properties": { "amount": { "description": "The amount of credits to replenish when auto-replenish is triggered.", "format": "int64", "type": "integer" }, "enabled": { "description": "Whether the organization has auto-replenish enabled.", "type": "boolean" }, "threshold": { "description": "The threshold at which the organization's credit balance will be auto-replenished.", "format": "int64", "type": "integer" } }, "required": [ "enabled" ], "additionalProperties": false }