Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions docs/api-reference/openapi-hosted.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"info": {
"title": "PMXT Hosted Router API",
"description": "Hosted-only endpoints for cross-venue search, matching, arbitrage, and SQL.",
"version": "04d3400"
"version": "34c4e55"
},
"servers": [
{
Expand Down Expand Up @@ -74,7 +74,7 @@
"type": "string",
"default": "identity"
},
"description": "Comma-separated relation filter. Valid values: identity (same resolution), subset (A yes implies B yes), superset (B yes implies A yes), overlap (some shared scenarios), and disjoint (mutually exclusive). Defaults to identity. For subset and superset, direction follows the pairwise edge direction returned in rawMatches when includeRawMatches=true.\n",
"description": "Comma-separated relation filter. Valid values: identity (same resolution), subset (A yes implies B yes), superset (B yes implies A yes), complement (A yes exactly when B no), overlap (some shared scenarios), and disjoint (cannot both resolve yes, but both can resolve no). Defaults to identity. For subset and superset, direction follows the pairwise edge direction returned in rawMatches when includeRawMatches=true.\n",
"example": "identity"
},
{
Expand All @@ -86,6 +86,7 @@
"identity",
"subset",
"superset",
"complement",
"overlap",
"disjoint"
],
Expand Down Expand Up @@ -280,7 +281,7 @@
"type": "string",
"default": "identity"
},
"description": "Comma-separated relation filter. Valid values: identity (same resolution), subset (A yes implies B yes), superset (B yes implies A yes), overlap (some shared scenarios), and disjoint (mutually exclusive). Defaults to identity. For subset and superset, direction follows the pairwise edge direction returned in rawMatches when includeRawMatches=true.\n",
"description": "Comma-separated relation filter. Valid values: identity (same resolution), subset (A yes implies B yes), superset (B yes implies A yes), complement (A yes exactly when B no), overlap (some shared scenarios), and disjoint (cannot both resolve yes, but both can resolve no). Defaults to identity. For subset and superset, direction follows the pairwise edge direction returned in rawMatches when includeRawMatches=true.\n",
"example": "identity"
},
{
Expand All @@ -292,6 +293,7 @@
"identity",
"subset",
"superset",
"complement",
"overlap",
"disjoint"
],
Expand Down
4 changes: 2 additions & 2 deletions docs/llms-full.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3085,7 +3085,7 @@ Returns connected clusters of semantically matched events across venues. Use thi
| `url` | string | No | Anchor the response to a specific event URL. |
| `query` | string | No | Text search across cluster titles. |
| `category` | string | No | Filter both sides of matched edges by event category. |
| `relations` | string | No | Comma-separated relation filter. Valid values: identity (same resolution), subset (A yes implies B yes), superset (B yes implies A yes), overlap (some shared scenarios), and disjoint (mutually exclusive). Defaults to identity. For subset and superset, direction follows the pairwise edge direction returned in rawMatches when includeRawMatches=true. |
| `relations` | string | No | Comma-separated relation filter. Valid values: identity (same resolution), subset (A yes implies B yes), superset (B yes implies A yes), complement (A yes exactly when B no), overlap (some shared scenarios), and disjoint (cannot both resolve yes, but both can resolve no). Defaults to identity. For subset and superset, direction follows the pairwise edge direction returned in rawMatches when includeRawMatches=true. |
| `relation` | string | No | Single relation filter. Alias for relations. |
| `minConfidence` | number | No | |
| `venues` | string | No | Comma-separated venue allow-list. |
Expand Down Expand Up @@ -3159,7 +3159,7 @@ Returns connected clusters of semantically matched markets across venues. Use th
| `url` | string | No | Anchor the response to a specific market URL. |
| `query` | string | No | Text search across cluster titles. |
| `category` | string | No | Filter both sides of matched edges by market category. |
| `relations` | string | No | Comma-separated relation filter. Valid values: identity (same resolution), subset (A yes implies B yes), superset (B yes implies A yes), overlap (some shared scenarios), and disjoint (mutually exclusive). Defaults to identity. For subset and superset, direction follows the pairwise edge direction returned in rawMatches when includeRawMatches=true. |
| `relations` | string | No | Comma-separated relation filter. Valid values: identity (same resolution), subset (A yes implies B yes), superset (B yes implies A yes), complement (A yes exactly when B no), overlap (some shared scenarios), and disjoint (cannot both resolve yes, but both can resolve no). Defaults to identity. For subset and superset, direction follows the pairwise edge direction returned in rawMatches when includeRawMatches=true. |
| `relation` | string | No | Single relation filter. Alias for relations. |
| `minConfidence` | number | No | |
| `venues` | string | No | Comma-separated venue allow-list. |
Expand Down
Loading