{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/censys/refs/heads/main/json-schema/asset-graph-createassetgraphinputbody-schema.json", "title": "CreateAssetGraphInputBody", "description": "CreateAssetGraphInputBody 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/CreateAssetGraphInputBody.json" ], "format": "uri", "readOnly": true, "type": "string" }, "description": { "description": "Optional description", "maxLength": 1024, "type": "string" }, "name": { "description": "User-defined name for this asset graph", "maxLength": 256, "type": "string" } }, "required": [ "name" ], "additionalProperties": false }