{
"type": "object",
"properties": {
"url": {
"type": "string",
"description": "The public URL to scan, e.g. https://example.com"
}
},
"required": [
"url"
],
"additionalProperties": false
}{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The scan id / shareToken."
}
},
"required": [
"id"
],
"additionalProperties": false
}{
"type": "object",
"properties": {
"q": {
"type": "string",
"description": "The natural-language question."
},
"itemType": {
"type": "string",
"enum": [
"methodology",
"checks",
"specs",
"llms-txt",
"check",
"page",
"any"
],
"description": "Narrow the search to one corpus type (default: any)."
},
"mode": {
"type": "string",
"enum": [
"list",
"summarize"
],
"description": "list (default) or summarize for an extractive summary."
}
},
"required": [
"q"
],
"additionalProperties": false
}