{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-gamelift/refs/heads/main/json-schema/gamelift-accept-match-input-schema.json",
"title": "AcceptMatchInput",
"description": "AcceptMatchInput schema from Amazon GameLift API",
"type": "object",
"properties": {
"TicketId": {
"allOf": [
{
"$ref": "#/components/schemas/MatchmakingIdStringModel"
},
{
"description": "A unique identifier for a matchmaking ticket. The ticket must be in status <code>REQUIRES_ACCEPTANCE</code>; otherwise this request will fail."
}
]
},
"PlayerIds": {
"allOf": [
{
"$ref": "#/components/schemas/StringList"
},
{
"description": "A unique identifier for a player delivering the response. This parameter can include one or multiple player IDs."
}
]
},
"AcceptanceType": {
"allOf": [
{
"$ref": "#/components/schemas/AcceptanceType"
},
{
"description": "Player response to the proposed match."
}
]
}
},
"required": [
"TicketId",
"PlayerIds",
"AcceptanceType"
]
}