search_entities
Search for Synapse entities like datasets, projects, files, and tables using keywords, entity types, or parent IDs to locate specific data resources within the Synapse platform.
Instructions
Search for Synapse entities.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
entity_type | No | ||
parent_id | No | ||
search_term | Yes |
Input Schema (JSON Schema)
{
"properties": {
"entity_type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Entity Type"
},
"parent_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Parent Id"
},
"search_term": {
"title": "Search Term",
"type": "string"
}
},
"required": [
"search_term"
],
"type": "object"
}