Censys · Schema

AutoReplenishConfig

AutoReplenishConfig schema from Censys Platform API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
amount integer The amount of credits to replenish when auto-replenish is triggered.
enabled boolean Whether the organization has auto-replenish enabled.
threshold integer The threshold at which the organization's credit balance will be auto-replenished.
View JSON Schema on GitHub

JSON Schema

platform-autoreplenishconfig-schema.json Raw ↑
{
  "$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
}