Matcher
Stay organized with collections
Save and categorize content based on your preferences.
Matcher for the Document
s. Currently supports matching by exact URIs.
JSON representation |
{
// Union field matcher can be only one of the following:
"urisMatcher": {
object (UrisMatcher )
},
"fhirMatcher": {
object (FhirMatcher )
}
// End of list of possible types for union field matcher .
} |
Fields |
Union field matcher . Matcher for the Document s. matcher can be only one of the following: |
urisMatcher |
object (UrisMatcher )
Matcher by exact URIs.
|
fhirMatcher |
object (FhirMatcher )
Matcher by FHIR resource names.
|
UrisMatcher
Matcher for the Document
s by exact uris.
JSON representation |
{
"uris": [
string
]
} |
Fields |
uris[] |
string
The exact URIs to match by.
|
FhirMatcher
Matcher for the Document
s by FHIR resource names.
JSON representation |
{
"fhirResources": [
string
]
} |
Fields |
fhirResources[] |
string
Required. The FHIR resources to match by. Format: projects/{project}/locations/{location}/datasets/{dataset}/fhirStores/{fhirStore}/fhir/{resourceType}/{fhir_resource_id}
|
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-03-03 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-03 UTC."],[[["This page details how to match specific documents, which can be found within the Agentspace environment."],["Matching can be done using two types of matchers: `UrisMatcher`, which matches documents by their exact URIs, and `FhirMatcher`, which matches by FHIR resource names."],["The `matcher` field is a union field that can only be one of either `urisMatcher` or `fhirMatcher`."],["`UrisMatcher` utilizes a list of `uris` to find documents that match the provided URIs."],["`FhirMatcher` uses a list of `fhirResources` in a specified format to locate documents based on their FHIR resource names."]]],[]]