changedInput schema / properties / includeIndexedOnly / description
Previous value: -"Only return indexed (searchable) fields. Default: false. Has no visible effect at the top level — use with `path` to filter."New value: +"drill mode only. Only return indexed (searchable) fields. Default: false."
changedInput schema / properties / limit / description
Previous value: -"Maximum results to return when using `query`. Default: 20."New value: +"search mode only. Maximum results to return. Default: 20."
addedInput schema / properties / mode
Added value: +{
+ "description": "Operation mode. \"search\" — keyword search (requires `query`); \"drill\" — drill into a section by path (requires `path`); \"overview\" — list all top-level sections (no other args needed).",
+ "enum": [
+ "search",
+ "drill",
+ "overview"
+ ],
+ "type": "string"
+}
changedInput schema / properties / path / description
Previous value: -"Dot-notation path to drill into a section. E.g., \"protocolSection.designModule\", \"protocolSection.eligibilityModule\", \"resultsSection\". Returns the section's individual fields. Cannot be combined with `query`. Omit both `path` and `query` for a top-level overview."New value: +"drill mode only. Dot-notation path to drill into — e.g., \"protocolSection.designModule\", \"protocolSection.eligibilityModule\", \"resultsSection\". Returns the section's individual fields."
changedInput schema / properties / query / description
Previous value: -"Keyword to search field names by — e.g., \"enrollment\", \"sponsor\", \"adverse events\". Returns matching field names ranked by relevance with their full paths and data types. Cannot be combined with `path`."New value: +"search mode only. Keyword to search field names by — e.g., \"enrollment\", \"sponsor\", \"adverse events\". Returns matching field names ranked by relevance with their full paths and data types."
addedInput schema / required
Added value: +[
+ "mode"
+]
changedOutput schema / properties / fields / description
Previous value: -"Field definitions, ordered by relevance when `query` is used."New value: +"Field definitions, ordered by relevance when mode is \"search\"."
changedOutput schema / properties / fields / items / properties / children / description
Previous value: -"Child fields (top-level overview only)."New value: +"Child fields (overview mode only)."
changedOutput schema / properties / resolvedPath / description
Previous value: -"Resolved path when `path` was used."New value: +"Resolved path when mode is \"drill\"."
changedOutput schema / properties / searchQuery / description
Previous value: -"Echo of the keyword when `query` was used."New value: +"Echo of the keyword when mode is \"search\"."