GET /v1/search/fieldQuery
Field Query
Search for entities by specific field values
GET
GET /v1/search/fieldQuery
Documentation Index
Fetch the complete documentation index at: https://openmetadata-codex-audit-docs-codebase-alignment.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Field Query
Search for entities by matching a specific field to a given value. This is useful for finding entities that have a particular column name, tag, owner, or other field-level attribute.Query Parameters
Field path to search. Common values:
columns.name, tags.tagFQN, owners.name, service.name, database.name, databaseSchema.name.Value to match against the specified field.
Search index to query. Options:
table_search_index, topic_search_index, dashboard_search_index, pipeline_search_index, mlmodel_search_index, container_search_index, search_entity_search_index, glossary_term_search_index, tag_search_index, user_search_index, team_search_index, domain_search_index, data_product_search_index.Starting offset for pagination.
Number of results to return.
GET /v1/search/fieldQuery
Returns
Returns an Elasticsearch-style response containing entities where the specified field matches the given value.Response
Time in milliseconds the search took to execute.
Whether the search timed out.
Search results container.
Common Field Paths
| Field Path | Description | Applicable Indexes |
|---|---|---|
columns.name | Column name within a table | table_search_index |
tags.tagFQN | Fully qualified tag name (e.g., PII.Sensitive) | All indexes |
owners.name | Owner username | All indexes |
service.name | Service name | All entity indexes |
database.name | Database name | table_search_index |
databaseSchema.name | Schema name | table_search_index |
Error Handling
| Code | Error Type | Description |
|---|---|---|
400 | BAD_REQUEST | Missing required parameters or invalid field path |
401 | UNAUTHORIZED | Invalid or missing authentication token |
403 | FORBIDDEN | User lacks permission to search entities |