get_frappe_usage_info
Retrieve schema metadata and usage guidance for Frappe Framework DocTypes or workflows to understand structure and implementation details.
Instructions
Get combined information about a DocType or workflow, including schema metadata and usage guidance.
Args:
doctype: DocType name (optional if workflow is provided)
workflow: Workflow name (optional if doctype is provided)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
doctype | No | ||
workflow | No |
Input Schema (JSON Schema)
{
"properties": {
"doctype": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Doctype"
},
"workflow": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Workflow"
}
},
"title": "get_frappe_usage_infoArguments",
"type": "object"
}