get_threat_models_by_collection
Retrieve threat models associated with a specific collection, filtering results by limit and page parameters for efficient threat analysis and management.
Instructions
Get threat models for a specific collection
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collection_id | Yes | ||
limit | No | ||
page | No |
Input Schema (JSON Schema)
{
"properties": {
"collection_id": {
"title": "Collection Id",
"type": "string"
},
"limit": {
"default": 20,
"title": "Limit",
"type": "integer"
},
"page": {
"default": 0,
"title": "Page",
"type": "integer"
}
},
"required": [
"collection_id"
],
"title": "get_threat_models_by_collectionArguments",
"type": "object"
}