Censys · Schema

ErrorDetail

ErrorDetail schema from Censys Platform API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
location string Where the error occurred, e.g. 'body.items[3].tags' or 'path.thing-id'
message string Error message text
value object The value at the given location
View JSON Schema on GitHub

JSON Schema

platform-errordetail-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-errordetail-schema.json",
  "title": "ErrorDetail",
  "description": "ErrorDetail schema from Censys Platform API",
  "type": "object",
  "properties": {
    "location": {
      "description": "Where the error occurred, e.g. 'body.items[3].tags' or 'path.thing-id'",
      "type": "string"
    },
    "message": {
      "description": "Error message text",
      "type": "string"
    },
    "value": {
      "description": "The value at the given location"
    }
  },
  "additionalProperties": false
}