search_by_metadata
Search Alfresco content using specific metadata fields such as term, creator, or content type to quickly find and retrieve relevant documents with customizable result limits.
Instructions
Search for content in Alfresco by metadata fields.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content_type | No | ||
creator | No | ||
max_results | No | ||
term | No |
Input Schema (JSON Schema)
{
"properties": {
"content_type": {
"default": "",
"title": "Content Type",
"type": "string"
},
"creator": {
"default": "",
"title": "Creator",
"type": "string"
},
"max_results": {
"default": 25,
"title": "Max Results",
"type": "integer"
},
"term": {
"default": "",
"title": "Term",
"type": "string"
}
},
"type": "object"
}