get_breach_details
Retrieve detailed information about a specific data breach by providing the breach name, helping users assess potential risks and exposure.
Instructions
Get details about a specific data breach
Input Schema
Name | Required | Description | Default |
---|---|---|---|
breach_name | Yes | Name of the breach to get details for |
Input Schema (JSON Schema)
{
"properties": {
"breach_name": {
"description": "Name of the breach to get details for",
"type": "string"
}
},
"required": [
"breach_name"
],
"type": "object"
}