Censys · Schema

CreateAssetGraphInputBody

CreateAssetGraphInputBody schema from Asset Graph API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
$schema string A URL to the JSON Schema for this object.
description string Optional description
name string User-defined name for this asset graph
View JSON Schema on GitHub

JSON Schema

asset-graph-createassetgraphinputbody-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/asset-graph-createassetgraphinputbody-schema.json",
  "title": "CreateAssetGraphInputBody",
  "description": "CreateAssetGraphInputBody schema from Asset Graph API",
  "type": "object",
  "properties": {
    "$schema": {
      "description": "A URL to the JSON Schema for this object.",
      "examples": [
        "https://graph.data.censys.io/schemas/CreateAssetGraphInputBody.json"
      ],
      "format": "uri",
      "readOnly": true,
      "type": "string"
    },
    "description": {
      "description": "Optional description",
      "maxLength": 1024,
      "type": "string"
    },
    "name": {
      "description": "User-defined name for this asset graph",
      "maxLength": 256,
      "type": "string"
    }
  },
  "required": [
    "name"
  ],
  "additionalProperties": false
}