Raw schema
{
"type": "object",
"properties": {
"accountName": {
"description": "Name of the Account.",
"type": "string"
},
"groupName": {
"description": "Name of the Group.",
"type": "string"
},
"version": {
"description": "Membership version of the Group to search. Pass 'latest' to always search the Group's current version, the Group's current_version to pin it, or an older version to search a frozen set of records.",
"type": "string"
},
"query": {
"description": "Free-text query.",
"type": [
"string",
"null"
],
"default": null
},
"size": {
"description": "Page size.",
"type": [
"integer",
"null"
],
"default": null
},
"skip": {
"description": "Number of results to skip.",
"type": [
"integer",
"null"
],
"default": null
},
"filter": {
"description": "OData-style filter expression.",
"type": [
"string",
"null"
],
"default": null
},
"radius": {
"description": "Radius filter: 'latitude,longitude,distance in km'.",
"type": [
"string",
"null"
],
"default": null
},
"cache": {
"description": "Disable cache (true to disable). Defaults to enabled.",
"type": [
"boolean",
"null"
],
"default": null
},
"vectorSearch": {
"description": "If false, disables vector search.",
"type": [
"boolean",
"null"
],
"default": null
},
"ranking": {
"description": "Ranking strategy: 'none' or 'score'. When omitted the server default flag controls behavior.",
"type": [
"string",
"null"
],
"default": null
},
"minimumTextScore": {
"description": "Minimum text similarity score between 0 and 1.",
"type": [
"number",
"null"
],
"default": null
},
"minimumImageScore": {
"description": "Minimum image similarity score between 0 and 1.",
"type": [
"number",
"null"
],
"default": null
},
"minimumDocumentScore": {
"description": "Minimum document similarity score between 0 and 1.",
"type": [
"number",
"null"
],
"default": null
},
"minimumVideoScore": {
"description": "Minimum video similarity score between 0 and 1.",
"type": [
"number",
"null"
],
"default": null
},
"minimumAudioScore": {
"description": "Minimum audio similarity score between 0 and 1.",
"type": [
"number",
"null"
],
"default": null
}
},
"required": [
"accountName",
"groupName",
"version"
]
}