{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/censys/refs/heads/main/json-schema/asset-graph-discoverypath-schema.json", "title": "DiscoveryPath", "description": "DiscoveryPath schema from Asset Graph API", "type": "object", "properties": { "segments": { "description": "Ordered segments forming the path", "items": { "$ref": "#/components/schemas/PathSegment" }, "type": [ "array", "null" ] } }, "required": [ "segments" ], "additionalProperties": false }