{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/censys/refs/heads/main/json-schema/asset-graph-label-schema.json", "title": "Label", "description": "Label schema from Asset Graph API", "type": "object", "properties": { "confidence": { "format": "double", "type": "number" }, "evidence": { "items": { "$ref": "#/components/schemas/Evidence" }, "type": [ "array", "null" ] }, "source": { "enum": [ "", "censys", "recog", "wappalyzer", "third_party", "html_meta_extractor" ], "type": "string" }, "value": { "type": "string" } }, "additionalProperties": false }