{ "type": "object", "properties": { "exact": { "allOf": [ { "$ref": "#/components/schemas/HeaderMatch" }, { "description": "The exact method header to be matched on." } ] }, "prefix": { "allOf": [ { "$ref": "#/components/schemas/HeaderMatch" }, { "description": "The specified beginning characters of the method header to be matched on." } ] }, "range": { "type": "object", "properties": { "end": { "allOf": [ { "$ref": "#/components/schemas/Long" }, { "description": "The end of the range." } ] }, "start": { "allOf": [ { "$ref": "#/components/schemas/Long" }, { "description": "The start of the range." } ] } }, "required": [ "end", "start" ], "description": "An object that represents the range of values to match on. The first character of the range is included in the range, though the last character is not. For example, if the range specified were 1-100, only values 1-99 would be matched." }, "regex": { "allOf": [ { "$ref": "#/components/schemas/HeaderMatch" }, { "description": "The regex used to match the method header." } ] }, "suffix": { "allOf": [ { "$ref": "#/components/schemas/HeaderMatch" }, { "description": "The specified ending characters of the method header to match on." } ] } }, "description": "An object representing the method header to be matched.", "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/aws-app-mesh/refs/heads/main/json-schema/app-mesh-grpc-metadata-match-method-schema.json", "title": "GrpcMetadataMatchMethod" }