search-documents
Retrieve company documents by query, department, and confidentiality level using a deliberately insecure AI framework for vulnerability testing.
Instructions
Search through company documents and knowledge base
Input Schema
Name | Required | Description | Default |
---|---|---|---|
confidentialLevel | No | Access level: public, internal, confidential | |
department | No | Limit search to specific department | |
query | Yes | Search query for documents |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"confidentialLevel": {
"description": "Access level: public, internal, confidential",
"type": "string"
},
"department": {
"description": "Limit search to specific department",
"type": "string"
},
"query": {
"description": "Search query for documents",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}