Censys · Schema

ListAssetGraphsOutputBody

ListAssetGraphsOutputBody 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.
asset_graphs arraynull List of asset graphs
next_page_token string Token for the next page of results
View JSON Schema on GitHub

JSON Schema

asset-graph-listassetgraphsoutputbody-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-listassetgraphsoutputbody-schema.json",
  "title": "ListAssetGraphsOutputBody",
  "description": "ListAssetGraphsOutputBody 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/ListAssetGraphsOutputBody.json"
      ],
      "format": "uri",
      "readOnly": true,
      "type": "string"
    },
    "asset_graphs": {
      "description": "List of asset graphs",
      "items": {
        "$ref": "#/components/schemas/AssetGraph"
      },
      "type": [
        "array",
        "null"
      ]
    },
    "next_page_token": {
      "description": "Token for the next page of results",
      "type": "string"
    }
  },
  "required": [
    "asset_graphs"
  ],
  "additionalProperties": false
}