get_data_model
Retrieve comprehensive details of a Panther data model, including Python body code and UDM mappings. Requires 'View Rules' permission to access specific data model ID.
Instructions
Get detailed information about a Panther data model, including the mappings and body
Returns complete data model information including Python body code and UDM mappings.
Permissions:{'all_of': ['View Rules']}
Input Schema
Name | Required | Description | Default |
---|---|---|---|
data_model_id | Yes | The ID of the data model to fetch |
Input Schema (JSON Schema)
{
"properties": {
"data_model_id": {
"description": "The ID of the data model to fetch",
"examples": [
"MyDataModel",
"AWS_CloudTrail",
"StandardUser"
],
"title": "Data Model Id",
"type": "string"
}
},
"required": [
"data_model_id"
],
"type": "object"
}