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 outlines matchers for Documents, supporting matching by exact URIs or FHIR resource names."],["The `matcher` field can be either `urisMatcher` for matching by exact URIs or `fhirMatcher` for matching by FHIR resource names."],["`UrisMatcher` uses a list of `uris` to match against, representing the exact URIs."],["`FhirMatcher` uses a list of `fhirResources` formatted as a specific path to match against FHIR resources."]]],[]]