Censys · Schema

SourceUsageBreakdown

SourceUsageBreakdown schema from Censys Platform API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
api integer The amount of credits consumed through the Platform API.
auto_replenishment integer The amount of credits consumed through auto-replenishment.
other integer The amount of credits consumed through other operations.
ui integer The amount of credits consumed through the Platform UI.
View JSON Schema on GitHub

JSON Schema

platform-sourceusagebreakdown-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-sourceusagebreakdown-schema.json",
  "title": "SourceUsageBreakdown",
  "description": "SourceUsageBreakdown schema from Censys Platform API",
  "type": "object",
  "properties": {
    "api": {
      "description": "The amount of credits consumed through the Platform API.",
      "format": "int64",
      "type": "integer"
    },
    "auto_replenishment": {
      "description": "The amount of credits consumed through auto-replenishment.",
      "format": "int64",
      "type": "integer"
    },
    "other": {
      "description": "The amount of credits consumed through other operations.",
      "format": "int64",
      "type": "integer"
    },
    "ui": {
      "description": "The amount of credits consumed through the Platform UI.",
      "format": "int64",
      "type": "integer"
    }
  },
  "required": [
    "ui",
    "api"
  ],
  "additionalProperties": false
}