Censys · JSON Structure

Platform Organizationcredits Structure

OrganizationCredits schema from Censys Platform API

Type: object Properties: 4 Required: 4
SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

OrganizationCredits is a JSON Structure definition published by Censys, describing 4 properties, of which 4 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

auto_replenish_config balance credit_expirations uid

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/censys/refs/heads/main/json-structure/platform-organizationcredits-structure.json",
  "name": "OrganizationCredits",
  "description": "OrganizationCredits schema from Censys Platform API",
  "type": "object",
  "required": [
    "balance",
    "auto_replenish_config",
    "credit_expirations",
    "uid"
  ],
  "additionalProperties": false,
  "properties": {
    "auto_replenish_config": {
      "description": "The auto-replenish configuration for the organization.",
      "$ref": "#/components/schemas/AutoReplenishConfig"
    },
    "balance": {
      "type": "int64",
      "description": "The current credit balance for the organization."
    },
    "credit_expirations": {
      "type": [
        "array",
        "null"
      ],
      "description": "The credit expirations for the organization.",
      "items": {
        "$ref": "#/components/schemas/CreditExpiration"
      }
    },
    "uid": {
      "type": "uuid",
      "description": "The ID of a Censys organization."
    }
  }
}