get_pattern_details
Retrieve comprehensive information about specific design patterns to understand implementation details, use cases, and structural components for software development.
Instructions
Get detailed information about a specific pattern
Input Schema
Name | Required | Description | Default |
---|---|---|---|
patternId | Yes | Pattern ID to get details for |
Input Schema (JSON Schema)
{
"properties": {
"patternId": {
"description": "Pattern ID to get details for",
"type": "string"
}
},
"required": [
"patternId"
],
"type": "object"
}