{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-gamelift/refs/heads/main/json-schema/gamelift-placed-player-session-schema.json", "title": "PlacedPlayerSession", "description": "Information about a player session. This object contains only the player ID and player session ID. To retrieve full details on a player session, call DescribePlayerSessions with the player session ID.", "type": "object", "properties": { "PlayerId": { "allOf": [ { "$ref": "#/components/schemas/NonZeroAndMaxString" }, { "description": "A unique identifier for a player that is associated with this player session." } ] }, "PlayerSessionId": { "allOf": [ { "$ref": "#/components/schemas/PlayerSessionId" }, { "description": "A unique identifier for a player session." } ] } } }