Censys · Schema

ListShardsOutputBody

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

JSON Schema

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