{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/LobbyPlayer", "title": "LobbyPlayer", "type": "object", "properties": { "id": { "type": "string" }, "data": { "type": "object", "additionalProperties": { "$ref": "#/components/schemas/DataObject" } }, "joined": { "type": "string", "format": "date-time" }, "lastUpdated": { "type": "string", "format": "date-time" } } }