{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://therundown.io/schemas/MarketParticipantResponse", "title": "MarketParticipantResponse", "type": "object", "properties": { "id": { "type": "integer", "description": "Participant ID" }, "type": { "type": "string", "enum": [ "TYPE_TEAM", "TYPE_PLAYER", "TYPE_RESULT" ] }, "name": { "type": "string", "example": "New England Patriots" }, "lines": { "type": "array", "items": { "$ref": "#/components/schemas/MarketLinesResponse" } } } }