get_specification_details
Retrieve detailed information about 3GPP specifications including metadata, content, dependencies, and related data for telecommunications standards development.
Instructions
Get comprehensive details about a specific 3GPP specification including metadata, content, dependencies, and related information.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Response format - agent_ready provides structured JSON for AI agents | agent_ready |
include_content | No | Include detailed content from TSpec-LLM dataset (default: true) | |
include_dependencies | No | Include information about specification dependencies (default: true) | |
specification_id | Yes | The specification ID (e.g., "TS 32.290", "TS 38.331", "TS 33.501") |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"default": "agent_ready",
"description": "Response format - agent_ready provides structured JSON for AI agents",
"enum": [
"detailed",
"summary",
"agent_ready"
],
"type": "string"
},
"include_content": {
"default": true,
"description": "Include detailed content from TSpec-LLM dataset (default: true)",
"type": "boolean"
},
"include_dependencies": {
"default": true,
"description": "Include information about specification dependencies (default: true)",
"type": "boolean"
},
"specification_id": {
"description": "The specification ID (e.g., \"TS 32.290\", \"TS 38.331\", \"TS 33.501\")",
"type": "string"
}
},
"required": [
"specification_id"
],
"type": "object"
}