{"info":{"title":"OpenRift API","version":"1.0.0","description":"**Authentication:** This API uses session cookies (Better Auth).\nAuth endpoints are not in this spec, they are proxied from `/api/auth/*`.\nAdmin endpoints live in a separate spec at `/api/admin/doc`.\n\nTo try authenticated endpoints in Swagger UI: sign in via the web app,\nthen open this page on the API origin in the same browser."},"openapi":"3.1.0","paths":{"/api/v1/card-submissions":{"post":{"operationId":"cardSubmissionsContract.submit","tags":["Card Submissions"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"slug":{"type":"string","pattern":"^[a-z0-9][a-z0-9-]*$"},"card":{"type":"object","properties":{"name":{"type":"string","minLength":1},"type":{"anyOf":[{"type":"string","minLength":1},{"type":"null"}]},"types":{"type":"array","minItems":1,"items":{"type":"string","minLength":1}},"super_types":{"type":"array","items":{"type":"string","minLength":1}},"domains":{"type":"array","items":{"type":"string","minLength":1}},"might":{"anyOf":[{"type":"integer","minimum":0,"maximum":9007199254740991},{"type":"null"}]},"energy":{"anyOf":[{"type":"integer","minimum":0,"maximum":9007199254740991},{"type":"null"}]},"power":{"anyOf":[{"type":"integer","minimum":0,"maximum":9007199254740991},{"type":"null"}]},"might_bonus":{"anyOf":[{"type":"integer","minimum":0,"maximum":9007199254740991},{"type":"null"}]},"tags":{"type":"array","items":{"type":"string","minLength":1}}},"required":["name"],"additionalProperties":false},"printings":{"type":"array","minItems":1,"maxItems":50,"items":{"type":"object","properties":{"public_code":{"type":"string","minLength":1},"set_id":{"anyOf":[{"type":"string","minLength":1},{"type":"null"}]},"set_name":{"anyOf":[{"type":"string","minLength":1},{"type":"null"}]},"rarity":{"anyOf":[{"type":"string","minLength":1},{"type":"null"}]},"art_variant":{"anyOf":[{"type":"string","minLength":1},{"type":"null"}]},"is_signed":{"type":"boolean"},"marker_slugs":{"type":"array","items":{"type":"string","minLength":1}},"distribution_channel_slugs":{"type":"array","items":{"type":"string","minLength":1}},"finish":{"anyOf":[{"type":"string","minLength":1},{"type":"null"}]},"size":{"anyOf":[{"type":"string","minLength":1},{"type":"null"}]},"artist":{"anyOf":[{"type":"string","minLength":1},{"type":"null"}]},"printed_rules_text":{"anyOf":[{"type":"string","minLength":1},{"type":"null"}]},"printed_effect_text":{"anyOf":[{"type":"string","minLength":1},{"type":"null"}]},"image_url":{"anyOf":[{"type":"string","pattern":"^https:\\/\\/"},{"type":"null"}]},"flavor_text":{"anyOf":[{"type":"string","minLength":1},{"type":"null"}]},"language":{"anyOf":[{"type":"string","pattern":"^[A-Z]{2}$"},{"type":"null"}]},"printed_name":{"anyOf":[{"type":"string","minLength":1},{"type":"null"}]},"printed_year":{"anyOf":[{"type":"integer","minimum":1900,"maximum":2999},{"type":"null"}]}},"required":["public_code"],"additionalProperties":false}},"submissionNote":{"anyOf":[{"type":"string","minLength":1,"maxLength":2000},{"type":"null"}],"default":null}},"required":["slug","card","printings"],"additionalProperties":false}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"ok":{"const":true}},"required":["ok"]}}}},"400":{"description":"400","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"BAD_REQUEST"},"status":{"const":400},"message":{"type":"string","default":"Submission failed validation"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"429":{"description":"429","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"TOO_MANY_REQUESTS"},"status":{"const":429},"message":{"type":"string","default":"Daily submission limit reached"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/trades":{"post":{"operationId":"cardTradesContract.create","tags":["CardTrades"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"groupSlug":{"type":"string","minLength":3,"maxLength":30,"pattern":"^[a-z0-9][a-z0-9-]+$"},"counterpartyUserId":{"type":"string","minLength":1},"role":{"enum":["giver","receiver"],"type":"string"},"printingId":{"type":"string","format":"uuid"},"quantity":{"type":"integer","minimum":1,"maximum":9007199254740991}},"required":["groupSlug","counterpartyUserId","role","printingId","quantity"]}}}},"responses":{"201":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"groupId":{"type":"string"},"groupSlug":{"type":"string"},"role":{"enum":["giver","receiver"],"type":"string"},"initiator":{"enum":["giver","receiver"],"type":"string"},"counterparty":{"type":"object","properties":{"userId":{"type":"string"},"name":{"anyOf":[{"type":"string"},{"type":"null"}]},"image":{"anyOf":[{"type":"string"},{"type":"null"}]},"gravatarHash":{"type":"string"},"contactMethods":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"type":{"enum":["discord","signal","telegram","whatsapp","phone","email","in_person","other"],"type":"string"},"value":{"type":"string"}},"required":["id","type","value"]}}},"required":["userId","name","image","gravatarHash","contactMethods"]},"printingId":{"type":"string"},"cardId":{"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"status":{"enum":["pending","reserved","completed","declined","cancelled","expired"],"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"acceptedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"completedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"closedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"expiresAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"viewerSyncAppliedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"counterpartySyncAppliedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"actionNeeded":{"anyOf":[{"enum":["accept-or-decline","cancel","complete","apply-sync"],"type":"string"},{"type":"null"}]}},"required":["id","groupId","groupSlug","role","initiator","counterparty","printingId","cardId","quantity","status","createdAt","updatedAt","acceptedAt","completedAt","closedAt","expiresAt","viewerSyncAppliedAt","counterpartySyncAppliedAt","actionNeeded"]}}}},"400":{"description":"400","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"BAD_REQUEST"},"status":{"const":400},"message":{"type":"string","default":"Invalid trade request"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Group or counterparty not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"409":{"description":"409","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"CONFLICT"},"status":{"const":409},"message":{"type":"string","default":"Trade cannot be created"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"get":{"operationId":"cardTradesContract.list","tags":["CardTrades"],"parameters":[{"name":"groupId","in":"query","schema":{"type":"string","format":"uuid"},"allowEmptyValue":true,"allowReserved":true},{"name":"status","in":"query","schema":{"enum":["pending","reserved","completed","declined","cancelled","expired"],"type":"string"},"allowEmptyValue":true,"allowReserved":true}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"groupId":{"type":"string"},"groupSlug":{"type":"string"},"role":{"enum":["giver","receiver"],"type":"string"},"initiator":{"enum":["giver","receiver"],"type":"string"},"counterparty":{"type":"object","properties":{"userId":{"type":"string"},"name":{"anyOf":[{"type":"string"},{"type":"null"}]},"image":{"anyOf":[{"type":"string"},{"type":"null"}]},"gravatarHash":{"type":"string"},"contactMethods":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"type":{"enum":["discord","signal","telegram","whatsapp","phone","email","in_person","other"],"type":"string"},"value":{"type":"string"}},"required":["id","type","value"]}}},"required":["userId","name","image","gravatarHash","contactMethods"]},"printingId":{"type":"string"},"cardId":{"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"status":{"enum":["pending","reserved","completed","declined","cancelled","expired"],"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"acceptedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"completedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"closedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"expiresAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"viewerSyncAppliedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"counterpartySyncAppliedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"actionNeeded":{"anyOf":[{"enum":["accept-or-decline","cancel","complete","apply-sync"],"type":"string"},{"type":"null"}]}},"required":["id","groupId","groupSlug","role","initiator","counterparty","printingId","cardId","quantity","status","createdAt","updatedAt","acceptedAt","completedAt","closedAt","expiresAt","viewerSyncAppliedAt","counterpartySyncAppliedAt","actionNeeded"]}}},"required":["items"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/trades/action-counts":{"get":{"operationId":"cardTradesContract.actionCounts","tags":["CardTrades"],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","minimum":0,"maximum":9007199254740991},"byGroup":{"type":"array","items":{"type":"object","properties":{"groupId":{"type":"string"},"groupSlug":{"type":"string"},"count":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["groupId","groupSlug","count"]}}},"required":["total","byGroup"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/trades/{id}/accept":{"post":{"operationId":"cardTradesContract.accept","tags":["CardTrades"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"groupId":{"type":"string"},"groupSlug":{"type":"string"},"role":{"enum":["giver","receiver"],"type":"string"},"initiator":{"enum":["giver","receiver"],"type":"string"},"counterparty":{"type":"object","properties":{"userId":{"type":"string"},"name":{"anyOf":[{"type":"string"},{"type":"null"}]},"image":{"anyOf":[{"type":"string"},{"type":"null"}]},"gravatarHash":{"type":"string"},"contactMethods":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"type":{"enum":["discord","signal","telegram","whatsapp","phone","email","in_person","other"],"type":"string"},"value":{"type":"string"}},"required":["id","type","value"]}}},"required":["userId","name","image","gravatarHash","contactMethods"]},"printingId":{"type":"string"},"cardId":{"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"status":{"enum":["pending","reserved","completed","declined","cancelled","expired"],"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"acceptedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"completedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"closedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"expiresAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"viewerSyncAppliedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"counterpartySyncAppliedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"actionNeeded":{"anyOf":[{"enum":["accept-or-decline","cancel","complete","apply-sync"],"type":"string"},{"type":"null"}]}},"required":["id","groupId","groupSlug","role","initiator","counterparty","printingId","cardId","quantity","status","createdAt","updatedAt","acceptedAt","completedAt","closedAt","expiresAt","viewerSyncAppliedAt","counterpartySyncAppliedAt","actionNeeded"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Trade not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"409":{"description":"409","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"CONFLICT"},"status":{"const":409},"message":{"type":"string","default":"Trade state has changed"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/trades/{id}/decline":{"post":{"operationId":"cardTradesContract.decline","tags":["CardTrades"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"groupId":{"type":"string"},"groupSlug":{"type":"string"},"role":{"enum":["giver","receiver"],"type":"string"},"initiator":{"enum":["giver","receiver"],"type":"string"},"counterparty":{"type":"object","properties":{"userId":{"type":"string"},"name":{"anyOf":[{"type":"string"},{"type":"null"}]},"image":{"anyOf":[{"type":"string"},{"type":"null"}]},"gravatarHash":{"type":"string"},"contactMethods":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"type":{"enum":["discord","signal","telegram","whatsapp","phone","email","in_person","other"],"type":"string"},"value":{"type":"string"}},"required":["id","type","value"]}}},"required":["userId","name","image","gravatarHash","contactMethods"]},"printingId":{"type":"string"},"cardId":{"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"status":{"enum":["pending","reserved","completed","declined","cancelled","expired"],"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"acceptedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"completedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"closedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"expiresAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"viewerSyncAppliedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"counterpartySyncAppliedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"actionNeeded":{"anyOf":[{"enum":["accept-or-decline","cancel","complete","apply-sync"],"type":"string"},{"type":"null"}]}},"required":["id","groupId","groupSlug","role","initiator","counterparty","printingId","cardId","quantity","status","createdAt","updatedAt","acceptedAt","completedAt","closedAt","expiresAt","viewerSyncAppliedAt","counterpartySyncAppliedAt","actionNeeded"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Trade not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"409":{"description":"409","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"CONFLICT"},"status":{"const":409},"message":{"type":"string","default":"Trade state has changed"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/trades/{id}/cancel":{"post":{"operationId":"cardTradesContract.cancel","tags":["CardTrades"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"groupId":{"type":"string"},"groupSlug":{"type":"string"},"role":{"enum":["giver","receiver"],"type":"string"},"initiator":{"enum":["giver","receiver"],"type":"string"},"counterparty":{"type":"object","properties":{"userId":{"type":"string"},"name":{"anyOf":[{"type":"string"},{"type":"null"}]},"image":{"anyOf":[{"type":"string"},{"type":"null"}]},"gravatarHash":{"type":"string"},"contactMethods":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"type":{"enum":["discord","signal","telegram","whatsapp","phone","email","in_person","other"],"type":"string"},"value":{"type":"string"}},"required":["id","type","value"]}}},"required":["userId","name","image","gravatarHash","contactMethods"]},"printingId":{"type":"string"},"cardId":{"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"status":{"enum":["pending","reserved","completed","declined","cancelled","expired"],"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"acceptedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"completedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"closedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"expiresAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"viewerSyncAppliedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"counterpartySyncAppliedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"actionNeeded":{"anyOf":[{"enum":["accept-or-decline","cancel","complete","apply-sync"],"type":"string"},{"type":"null"}]}},"required":["id","groupId","groupSlug","role","initiator","counterparty","printingId","cardId","quantity","status","createdAt","updatedAt","acceptedAt","completedAt","closedAt","expiresAt","viewerSyncAppliedAt","counterpartySyncAppliedAt","actionNeeded"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Trade not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"409":{"description":"409","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"CONFLICT"},"status":{"const":409},"message":{"type":"string","default":"Trade cannot be cancelled"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/trades/{id}/complete":{"post":{"operationId":"cardTradesContract.complete","tags":["CardTrades"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"groupId":{"type":"string"},"groupSlug":{"type":"string"},"role":{"enum":["giver","receiver"],"type":"string"},"initiator":{"enum":["giver","receiver"],"type":"string"},"counterparty":{"type":"object","properties":{"userId":{"type":"string"},"name":{"anyOf":[{"type":"string"},{"type":"null"}]},"image":{"anyOf":[{"type":"string"},{"type":"null"}]},"gravatarHash":{"type":"string"},"contactMethods":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"type":{"enum":["discord","signal","telegram","whatsapp","phone","email","in_person","other"],"type":"string"},"value":{"type":"string"}},"required":["id","type","value"]}}},"required":["userId","name","image","gravatarHash","contactMethods"]},"printingId":{"type":"string"},"cardId":{"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"status":{"enum":["pending","reserved","completed","declined","cancelled","expired"],"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"acceptedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"completedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"closedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"expiresAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"viewerSyncAppliedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"counterpartySyncAppliedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"actionNeeded":{"anyOf":[{"enum":["accept-or-decline","cancel","complete","apply-sync"],"type":"string"},{"type":"null"}]}},"required":["id","groupId","groupSlug","role","initiator","counterparty","printingId","cardId","quantity","status","createdAt","updatedAt","acceptedAt","completedAt","closedAt","expiresAt","viewerSyncAppliedAt","counterpartySyncAppliedAt","actionNeeded"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Trade not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"409":{"description":"409","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"CONFLICT"},"status":{"const":409},"message":{"type":"string","default":"Trade is not reserved"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/trades/{id}/quantity":{"post":{"operationId":"cardTradesContract.setQuantity","tags":["CardTrades"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"quantity":{"type":"integer","minimum":1,"maximum":9007199254740991}},"required":["quantity"]}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"groupId":{"type":"string"},"groupSlug":{"type":"string"},"role":{"enum":["giver","receiver"],"type":"string"},"initiator":{"enum":["giver","receiver"],"type":"string"},"counterparty":{"type":"object","properties":{"userId":{"type":"string"},"name":{"anyOf":[{"type":"string"},{"type":"null"}]},"image":{"anyOf":[{"type":"string"},{"type":"null"}]},"gravatarHash":{"type":"string"},"contactMethods":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"type":{"enum":["discord","signal","telegram","whatsapp","phone","email","in_person","other"],"type":"string"},"value":{"type":"string"}},"required":["id","type","value"]}}},"required":["userId","name","image","gravatarHash","contactMethods"]},"printingId":{"type":"string"},"cardId":{"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"status":{"enum":["pending","reserved","completed","declined","cancelled","expired"],"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"acceptedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"completedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"closedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"expiresAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"viewerSyncAppliedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"counterpartySyncAppliedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"actionNeeded":{"anyOf":[{"enum":["accept-or-decline","cancel","complete","apply-sync"],"type":"string"},{"type":"null"}]}},"required":["id","groupId","groupSlug","role","initiator","counterparty","printingId","cardId","quantity","status","createdAt","updatedAt","acceptedAt","completedAt","closedAt","expiresAt","viewerSyncAppliedAt","counterpartySyncAppliedAt","actionNeeded"]}}}},"400":{"description":"400","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"BAD_REQUEST"},"status":{"const":400},"message":{"type":"string","default":"Invalid quantity"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Trade not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"409":{"description":"409","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"CONFLICT"},"status":{"const":409},"message":{"type":"string","default":"Trade state has changed"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/trades/{id}/sync":{"post":{"operationId":"cardTradesContract.sync","tags":["CardTrades"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"requestBody":{"required":false,"content":{"application/json":{"schema":{"type":"object","properties":{"targetCollectionId":{"type":"string","format":"uuid"}}}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"groupId":{"type":"string"},"groupSlug":{"type":"string"},"role":{"enum":["giver","receiver"],"type":"string"},"initiator":{"enum":["giver","receiver"],"type":"string"},"counterparty":{"type":"object","properties":{"userId":{"type":"string"},"name":{"anyOf":[{"type":"string"},{"type":"null"}]},"image":{"anyOf":[{"type":"string"},{"type":"null"}]},"gravatarHash":{"type":"string"},"contactMethods":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"type":{"enum":["discord","signal","telegram","whatsapp","phone","email","in_person","other"],"type":"string"},"value":{"type":"string"}},"required":["id","type","value"]}}},"required":["userId","name","image","gravatarHash","contactMethods"]},"printingId":{"type":"string"},"cardId":{"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"status":{"enum":["pending","reserved","completed","declined","cancelled","expired"],"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"acceptedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"completedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"closedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"expiresAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"viewerSyncAppliedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"counterpartySyncAppliedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"actionNeeded":{"anyOf":[{"enum":["accept-or-decline","cancel","complete","apply-sync"],"type":"string"},{"type":"null"}]}},"required":["id","groupId","groupSlug","role","initiator","counterparty","printingId","cardId","quantity","status","createdAt","updatedAt","acceptedAt","completedAt","closedAt","expiresAt","viewerSyncAppliedAt","counterpartySyncAppliedAt","actionNeeded"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Trade not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"409":{"description":"409","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"CONFLICT"},"status":{"const":409},"message":{"type":"string","default":"Sync not available"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/trades/{id}/sync/skip":{"post":{"operationId":"cardTradesContract.skipSync","tags":["CardTrades"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"groupId":{"type":"string"},"groupSlug":{"type":"string"},"role":{"enum":["giver","receiver"],"type":"string"},"initiator":{"enum":["giver","receiver"],"type":"string"},"counterparty":{"type":"object","properties":{"userId":{"type":"string"},"name":{"anyOf":[{"type":"string"},{"type":"null"}]},"image":{"anyOf":[{"type":"string"},{"type":"null"}]},"gravatarHash":{"type":"string"},"contactMethods":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"type":{"enum":["discord","signal","telegram","whatsapp","phone","email","in_person","other"],"type":"string"},"value":{"type":"string"}},"required":["id","type","value"]}}},"required":["userId","name","image","gravatarHash","contactMethods"]},"printingId":{"type":"string"},"cardId":{"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"status":{"enum":["pending","reserved","completed","declined","cancelled","expired"],"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"acceptedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"completedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"closedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"expiresAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"viewerSyncAppliedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"counterpartySyncAppliedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"actionNeeded":{"anyOf":[{"enum":["accept-or-decline","cancel","complete","apply-sync"],"type":"string"},{"type":"null"}]}},"required":["id","groupId","groupSlug","role","initiator","counterparty","printingId","cardId","quantity","status","createdAt","updatedAt","acceptedAt","completedAt","closedAt","expiresAt","viewerSyncAppliedAt","counterpartySyncAppliedAt","actionNeeded"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Trade not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"409":{"description":"409","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"CONFLICT"},"status":{"const":409},"message":{"type":"string","default":"Sync not available"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/cards/{cardSlug}":{"get":{"operationId":"cardsContract.detail","tags":["Cards"],"parameters":[{"name":"cardSlug","in":"path","required":true,"schema":{"type":"string","minLength":1}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"card":{"type":"object","properties":{"id":{"type":"string"},"slug":{"type":"string"},"name":{"type":"string"},"type":{"type":"string"},"types":{"type":"array","minItems":1,"items":{"type":"string"}},"superTypes":{"type":"array","items":{"type":"string"}},"domains":{"type":"array","items":{"type":"string"}},"might":{"anyOf":[{"type":"number"},{"type":"null"}]},"energy":{"anyOf":[{"type":"number"},{"type":"null"}]},"power":{"anyOf":[{"type":"number"},{"type":"null"}]},"keywords":{"type":"array","items":{"type":"string"}},"tags":{"type":"array","items":{"type":"string"}},"mightBonus":{"anyOf":[{"type":"number"},{"type":"null"}]},"maxCopiesOverride":{"anyOf":[{"type":"number"},{"type":"null"}]},"errata":{"anyOf":[{"type":"object","properties":{"correctedRulesText":{"anyOf":[{"type":"string"},{"type":"null"}]},"correctedEffectText":{"anyOf":[{"type":"string"},{"type":"null"}]},"source":{"type":"string"},"sourceUrl":{"anyOf":[{"type":"string"},{"type":"null"}]},"effectiveDate":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["correctedRulesText","correctedEffectText","source","sourceUrl","effectiveDate"]},{"type":"null"}]},"bans":{"type":"array","items":{"type":"object","properties":{"formatId":{"type":"string"},"formatName":{"type":"string"},"bannedAt":{"type":"string"},"reason":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["formatId","formatName","bannedAt","reason"]}}},"required":["id","slug","name","type","types","superTypes","domains","might","energy","power","keywords","tags","mightBonus","maxCopiesOverride","errata","bans"]},"printings":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"shortCode":{"type":"string"},"setId":{"type":"string"},"rarity":{"type":"string"},"artVariant":{"type":"string"},"isSigned":{"type":"boolean"},"markers":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"slug":{"type":"string"},"label":{"type":"string"},"description":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["id","slug","label","description"]}},"distributionChannels":{"type":"array","items":{"type":"object","properties":{"channel":{"type":"object","properties":{"id":{"type":"string"},"slug":{"type":"string"},"label":{"type":"string"},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"kind":{"enum":["event","product"],"type":"string"},"parentId":{"anyOf":[{"type":"string"},{"type":"null"}]},"childrenLabel":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["id","slug","label","description","kind","parentId","childrenLabel"]},"distributionNote":{"anyOf":[{"type":"string"},{"type":"null"}]},"ancestorLabels":{"type":"array","items":{"type":"string"}}},"required":["channel","distributionNote","ancestorLabels"]}},"finish":{"type":"string"},"size":{"type":"string"},"images":{"type":"array","items":{"type":"object","properties":{"face":{"enum":["front","back"],"type":"string"},"imageId":{"type":"string"}},"required":["face","imageId"]}},"artist":{"type":"string"},"publicCode":{"type":"string"},"printedRulesText":{"anyOf":[{"type":"string"},{"type":"null"}]},"printedEffectText":{"anyOf":[{"type":"string"},{"type":"null"}]},"flavorText":{"anyOf":[{"type":"string"},{"type":"null"}]},"printedName":{"anyOf":[{"type":"string"},{"type":"null"}]},"printedYear":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"language":{"type":"string"},"comment":{"anyOf":[{"type":"string"},{"type":"null"}]},"canonicalRank":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},"cardId":{"type":"string"}},"required":["id","shortCode","setId","rarity","artVariant","isSigned","markers","distributionChannels","finish","size","images","artist","publicCode","printedRulesText","printedEffectText","flavorText","printedName","printedYear","language","comment","canonicalRank","cardId"]}},"sets":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"slug":{"type":"string"},"name":{"type":"string"},"releasedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"released":{"type":"boolean"},"setType":{"enum":["main","supplemental"],"type":"string"}},"required":["id","slug","name","releasedAt","released","setType"]}},"products":{"type":"array","items":{"type":"object","properties":{"printingId":{"type":"string"},"slug":{"type":"string"},"name":{"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0}},"required":["printingId","slug","name","quantity"]}}},"required":["card","printings","sets","products"]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Card not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}},"security":[]}},"/api/v1/catalog":{"get":{"operationId":"catalogContract.catalog","tags":["Catalog"],"parameters":[{"name":"v","in":"query","schema":{"type":"string"},"allowEmptyValue":true,"allowReserved":true}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"sets":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"slug":{"type":"string"},"name":{"type":"string"},"releasedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"released":{"type":"boolean"},"setType":{"enum":["main","supplemental"],"type":"string"}},"required":["id","slug","name","releasedAt","released","setType"]}},"cards":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"object","properties":{"slug":{"type":"string"},"name":{"type":"string"},"type":{"type":"string"},"types":{"type":"array","minItems":1,"items":{"type":"string"}},"superTypes":{"type":"array","items":{"type":"string"}},"domains":{"type":"array","items":{"type":"string"}},"might":{"anyOf":[{"type":"number"},{"type":"null"}]},"energy":{"anyOf":[{"type":"number"},{"type":"null"}]},"power":{"anyOf":[{"type":"number"},{"type":"null"}]},"keywords":{"type":"array","items":{"type":"string"}},"tags":{"type":"array","items":{"type":"string"}},"mightBonus":{"anyOf":[{"type":"number"},{"type":"null"}]},"maxCopiesOverride":{"anyOf":[{"type":"number"},{"type":"null"}]},"errata":{"anyOf":[{"type":"object","properties":{"correctedRulesText":{"anyOf":[{"type":"string"},{"type":"null"}]},"correctedEffectText":{"anyOf":[{"type":"string"},{"type":"null"}]},"source":{"type":"string"},"sourceUrl":{"anyOf":[{"type":"string"},{"type":"null"}]},"effectiveDate":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["correctedRulesText","correctedEffectText","source","sourceUrl","effectiveDate"]},{"type":"null"}]},"bans":{"type":"array","items":{"type":"object","properties":{"formatId":{"type":"string"},"formatName":{"type":"string"},"bannedAt":{"type":"string"},"reason":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["formatId","formatName","bannedAt","reason"]}}},"required":["slug","name","type","types","superTypes","domains","might","energy","power","keywords","tags","mightBonus","maxCopiesOverride","errata","bans"]}},"printings":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"object","properties":{"shortCode":{"type":"string"},"setId":{"type":"string"},"rarity":{"type":"string"},"artVariant":{"type":"string"},"isSigned":{"type":"boolean"},"markers":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"slug":{"type":"string"},"label":{"type":"string"},"description":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["id","slug","label","description"]}},"distributionChannels":{"type":"array","items":{"type":"object","properties":{"channel":{"type":"object","properties":{"id":{"type":"string"},"slug":{"type":"string"},"label":{"type":"string"},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"kind":{"enum":["event","product"],"type":"string"},"parentId":{"anyOf":[{"type":"string"},{"type":"null"}]},"childrenLabel":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["id","slug","label","description","kind","parentId","childrenLabel"]},"distributionNote":{"anyOf":[{"type":"string"},{"type":"null"}]},"ancestorLabels":{"type":"array","items":{"type":"string"}}},"required":["channel","distributionNote","ancestorLabels"]}},"finish":{"type":"string"},"size":{"type":"string"},"images":{"type":"array","items":{"type":"object","properties":{"face":{"enum":["front","back"],"type":"string"},"imageId":{"type":"string"}},"required":["face","imageId"]}},"artist":{"type":"string"},"publicCode":{"type":"string"},"printedRulesText":{"anyOf":[{"type":"string"},{"type":"null"}]},"printedEffectText":{"anyOf":[{"type":"string"},{"type":"null"}]},"flavorText":{"anyOf":[{"type":"string"},{"type":"null"}]},"printedName":{"anyOf":[{"type":"string"},{"type":"null"}]},"printedYear":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"language":{"type":"string"},"comment":{"anyOf":[{"type":"string"},{"type":"null"}]},"canonicalRank":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},"cardId":{"type":"string"}},"required":["shortCode","setId","rarity","artVariant","isSigned","markers","distributionChannels","finish","size","images","artist","publicCode","printedRulesText","printedEffectText","flavorText","printedName","printedYear","language","comment","canonicalRank","cardId"]}},"totalCopies":{"type":"number"},"customTagAssignments":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"array","items":{"type":"string"}}}},"required":["sets","cards","printings","totalCopies","customTagAssignments"]}}}}},"security":[]}},"/api/v1/collection-events":{"get":{"operationId":"collectionEventsContract.list","tags":["Collection Events"],"parameters":[{"name":"cursor","in":"query","schema":{"type":"string","minLength":1},"allowEmptyValue":true,"allowReserved":true},{"name":"limit","in":"query","schema":{"type":"integer","minimum":1,"maximum":100},"allowEmptyValue":true,"allowReserved":true}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"action":{"enum":["added","removed","moved"],"type":"string"},"copyId":{"anyOf":[{"type":"string"},{"type":"null"}]},"printingId":{"type":"string"},"fromCollectionId":{"anyOf":[{"type":"string"},{"type":"null"}]},"fromCollectionName":{"anyOf":[{"type":"string"},{"type":"null"}]},"toCollectionId":{"anyOf":[{"type":"string"},{"type":"null"}]},"toCollectionName":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdAt":{"type":"string"},"shortCode":{"type":"string"},"rarity":{"type":"string"},"imageId":{"anyOf":[{"type":"string"},{"type":"null"}]},"cardName":{"type":"string"},"cardTypes":{"type":"array","minItems":1,"items":{"type":"string"}},"cardSuperTypes":{"type":"array","items":{"type":"string"}},"tags":{"type":"array","items":{"type":"string"}}},"required":["id","action","copyId","printingId","fromCollectionId","fromCollectionName","toCollectionId","toCollectionName","createdAt","shortCode","rarity","imageId","cardName","cardTypes","cardSuperTypes","tags"]}},"nextCursor":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["items","nextCursor"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/collection-value-history":{"get":{"operationId":"collectionValueHistoryContract.get","tags":["Collection Value History"],"parameters":[{"name":"range","in":"query","schema":{"enum":["7d","30d","90d","all"],"type":"string","default":"30d"},"allowEmptyValue":true,"allowReserved":true},{"name":"marketplace","in":"query","schema":{"enum":["tcgplayer","cardmarket","cardtrader"],"type":"string","default":"tcgplayer"},"allowEmptyValue":true,"allowReserved":true},{"name":"collectionIds","in":"query","schema":{"type":"string","minLength":1,"maxLength":2000},"allowEmptyValue":true,"allowReserved":true},{"name":"sets","in":"query","schema":{"type":"string","minLength":1,"maxLength":2000},"allowEmptyValue":true,"allowReserved":true},{"name":"languages","in":"query","schema":{"type":"string","minLength":1,"maxLength":2000},"allowEmptyValue":true,"allowReserved":true},{"name":"domains","in":"query","schema":{"type":"string","minLength":1,"maxLength":2000},"allowEmptyValue":true,"allowReserved":true},{"name":"types","in":"query","schema":{"type":"string","minLength":1,"maxLength":2000},"allowEmptyValue":true,"allowReserved":true},{"name":"rarities","in":"query","schema":{"type":"string","minLength":1,"maxLength":2000},"allowEmptyValue":true,"allowReserved":true},{"name":"finishes","in":"query","schema":{"type":"string","minLength":1,"maxLength":2000},"allowEmptyValue":true,"allowReserved":true},{"name":"artVariants","in":"query","schema":{"type":"string","minLength":1,"maxLength":2000},"allowEmptyValue":true,"allowReserved":true},{"name":"promos","in":"query","schema":{"enum":["only","exclude"],"type":"string"},"allowEmptyValue":true,"allowReserved":true},{"name":"signed","in":"query","schema":{"enum":["true","false"],"type":"string"},"allowEmptyValue":true,"allowReserved":true},{"name":"banned","in":"query","schema":{"enum":["true","false"],"type":"string"},"allowEmptyValue":true,"allowReserved":true},{"name":"errata","in":"query","schema":{"enum":["true","false"],"type":"string"},"allowEmptyValue":true,"allowReserved":true}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"series":{"type":"array","items":{"type":"object","properties":{"date":{"type":"string"},"valueCents":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},"copyCount":{"type":"number"}},"required":["date","valueCents","copyCount"]}}},"required":["series"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/collections":{"get":{"operationId":"collectionsContract.list","tags":["Collections"],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"availableForDeckbuilding":{"type":"boolean"},"isInbox":{"type":"boolean"},"sortOrder":{"type":"number"},"isPublic":{"type":"boolean"},"shareToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"copyCount":{"type":"number"},"totalValueCents":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"unpricedCopyCount":{"anyOf":[{"type":"number"},{"type":"null"}]},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"groupId":{"anyOf":[{"type":"string"},{"type":"null"}]},"groupSlug":{"anyOf":[{"type":"string"},{"type":"null"}]},"groupName":{"anyOf":[{"type":"string"},{"type":"null"}]},"viewerCanAdmin":{"type":"boolean"}},"required":["id","name","description","availableForDeckbuilding","isInbox","sortOrder","isPublic","shareToken","copyCount","totalValueCents","unpricedCopyCount","createdAt","updatedAt","groupId","groupSlug","groupName","viewerCanAdmin"]}}},"required":["items"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"post":{"operationId":"collectionsContract.create","tags":["Collections"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string","minLength":1,"maxLength":200},"description":{"anyOf":[{"type":"string","maxLength":1000},{"type":"null"}]},"availableForDeckbuilding":{"type":"boolean"},"groupSlug":{"type":"string"}},"required":["name"]}}}},"responses":{"201":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"availableForDeckbuilding":{"type":"boolean"},"isInbox":{"type":"boolean"},"sortOrder":{"type":"number"},"isPublic":{"type":"boolean"},"shareToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"copyCount":{"type":"number"},"totalValueCents":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"unpricedCopyCount":{"anyOf":[{"type":"number"},{"type":"null"}]},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"groupId":{"anyOf":[{"type":"string"},{"type":"null"}]},"groupSlug":{"anyOf":[{"type":"string"},{"type":"null"}]},"groupName":{"anyOf":[{"type":"string"},{"type":"null"}]},"viewerCanAdmin":{"type":"boolean"}},"required":["id","name","description","availableForDeckbuilding","isInbox","sortOrder","isPublic","shareToken","copyCount","totalValueCents","unpricedCopyCount","createdAt","updatedAt","groupId","groupSlug","groupName","viewerCanAdmin"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Group not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/collections/reorder":{"post":{"operationId":"collectionsContract.reorder","tags":["Collections"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"orderedIds":{"type":"array","minItems":1,"maxItems":500,"items":{"type":"string","format":"uuid"}}},"required":["orderedIds"]}}}},"responses":{"204":{"description":"OK","content":{"application/json":{"schema":{"anyOf":[{},{"not":{}}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/collections/reset":{"post":{"operationId":"collectionsContract.resetAll","tags":["Collections"],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"removedCopies":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},"removedCollections":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},"removedLists":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991}},"required":["removedCopies","removedCollections","removedLists"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"409":{"description":"409","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"CONFLICT"},"status":{"const":409},"message":{"type":"string","default":"Collections cannot be reset"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/collections/{id}":{"get":{"operationId":"collectionsContract.get","tags":["Collections"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"availableForDeckbuilding":{"type":"boolean"},"isInbox":{"type":"boolean"},"sortOrder":{"type":"number"},"isPublic":{"type":"boolean"},"shareToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"copyCount":{"type":"number"},"totalValueCents":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"unpricedCopyCount":{"anyOf":[{"type":"number"},{"type":"null"}]},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"groupId":{"anyOf":[{"type":"string"},{"type":"null"}]},"groupSlug":{"anyOf":[{"type":"string"},{"type":"null"}]},"groupName":{"anyOf":[{"type":"string"},{"type":"null"}]},"viewerCanAdmin":{"type":"boolean"}},"required":["id","name","description","availableForDeckbuilding","isInbox","sortOrder","isPublic","shareToken","copyCount","totalValueCents","unpricedCopyCount","createdAt","updatedAt","groupId","groupSlug","groupName","viewerCanAdmin"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Collection not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"patch":{"operationId":"collectionsContract.update","tags":["Collections"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"requestBody":{"required":false,"content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string","minLength":1,"maxLength":200},"description":{"anyOf":[{"type":"string","maxLength":1000},{"type":"null"}]},"sortOrder":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991}}}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"availableForDeckbuilding":{"type":"boolean"},"isInbox":{"type":"boolean"},"sortOrder":{"type":"number"},"isPublic":{"type":"boolean"},"shareToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"copyCount":{"type":"number"},"totalValueCents":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"unpricedCopyCount":{"anyOf":[{"type":"number"},{"type":"null"}]},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"groupId":{"anyOf":[{"type":"string"},{"type":"null"}]},"groupSlug":{"anyOf":[{"type":"string"},{"type":"null"}]},"groupName":{"anyOf":[{"type":"string"},{"type":"null"}]},"viewerCanAdmin":{"type":"boolean"}},"required":["id","name","description","availableForDeckbuilding","isInbox","sortOrder","isPublic","shareToken","copyCount","totalValueCents","unpricedCopyCount","createdAt","updatedAt","groupId","groupSlug","groupName","viewerCanAdmin"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Collection not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"delete":{"operationId":"collectionsContract.remove","tags":["Collections"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"204":{"description":"OK","content":{"application/json":{"schema":{"anyOf":[{},{"not":{}}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Collection not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"409":{"description":"409","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"CONFLICT"},"status":{"const":409},"message":{"type":"string","default":"Collection cannot be deleted"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/collections/{id}/clear":{"post":{"operationId":"collectionsContract.clear","tags":["Collections"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"removedCount":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},"keptCopyIds":{"type":"array","items":{"type":"string"}}},"required":["removedCount","keptCopyIds"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Collection not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/collections/{id}/copies":{"get":{"operationId":"collectionsContract.copies","tags":["Collections"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"cursor","in":"query","schema":{"type":"string","minLength":1},"allowEmptyValue":true,"allowReserved":true},{"name":"limit","in":"query","schema":{"type":"integer","minimum":1,"maximum":1000},"allowEmptyValue":true,"allowReserved":true}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"printingId":{"type":"string"},"collectionId":{"type":"string"},"groupId":{"anyOf":[{"type":"string"},{"type":"null"}]},"condition":{"anyOf":[{"type":"string"},{"type":"null"}]},"grader":{"anyOf":[{"type":"string"},{"type":"null"}]},"grade":{"anyOf":[{"type":"number"},{"type":"null"}]},"notesPublic":{"anyOf":[{"type":"string"},{"type":"null"}]},"isAltered":{"type":"boolean"},"links":{"type":"array","items":{"type":"object","properties":{"url":{"type":"string","maxLength":500,"format":"uri"},"label":{"type":"string","minLength":1,"maxLength":100}},"required":["url"]}},"notesPrivate":{"anyOf":[{"type":"string"},{"type":"null"}]},"onLoan":{"type":"boolean"},"reserved":{"type":"boolean"}},"required":["id","printingId","collectionId","groupId","condition","grader","grade","notesPublic","isAltered","links","notesPrivate","onLoan","reserved"]}},"nextCursor":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["items","nextCursor"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Collection not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/collections/{id}/share":{"post":{"operationId":"collectionsContract.share","tags":["Collections"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"shareToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"isPublic":{"type":"boolean"}},"required":["shareToken","isPublic"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Collection not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"get":{"operationId":"collectionsContract.shareState","tags":["Collections"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"shareToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"isPublic":{"type":"boolean"}},"required":["shareToken","isPublic"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Collection not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"delete":{"operationId":"collectionsContract.unshare","tags":["Collections"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"204":{"description":"OK","content":{"application/json":{"schema":{"anyOf":[{},{"not":{}}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Collection not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/collections/{id}/share/rotate":{"post":{"operationId":"collectionsContract.rotateShare","tags":["Collections"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"shareToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"isPublic":{"type":"boolean"}},"required":["shareToken","isPublic"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Collection not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/collections/{id}/group-shares":{"get":{"operationId":"collectionsContract.groupShares","tags":["Collections"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"groupId":{"type":"string"},"groupSlug":{"type":"string"},"groupName":{"type":"string"}},"required":["groupId","groupSlug","groupName"]}}},"required":["items"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Collection not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/collections/{id}/deckbuilding":{"put":{"operationId":"collectionsContract.setDeckbuilding","tags":["Collections"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"available":{"type":"boolean"}},"required":["available"]}}}},"responses":{"204":{"description":"OK","content":{"application/json":{"schema":{"anyOf":[{},{"not":{}}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Collection not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/contact-methods":{"get":{"operationId":"contactMethodsContract.list","tags":["Contact Methods"],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"type":{"enum":["discord","signal","telegram","whatsapp","phone","email","in_person","other"],"type":"string"},"value":{"type":"string"}},"required":["id","type","value"]}}},"required":["items"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"post":{"operationId":"contactMethodsContract.create","tags":["Contact Methods"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"type":{"enum":["discord","signal","telegram","whatsapp","phone","email","in_person","other"],"type":"string"},"value":{"type":"string","minLength":1,"maxLength":200}},"required":["type","value"]}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"type":{"enum":["discord","signal","telegram","whatsapp","phone","email","in_person","other"],"type":"string"},"value":{"type":"string"}},"required":["id","type","value"]}}},"required":["items"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/contact-methods/{id}":{"patch":{"operationId":"contactMethodsContract.update","tags":["Contact Methods"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"type":{"enum":["discord","signal","telegram","whatsapp","phone","email","in_person","other"],"type":"string"},"value":{"type":"string","minLength":1,"maxLength":200}},"required":["type","value"]}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"type":{"enum":["discord","signal","telegram","whatsapp","phone","email","in_person","other"],"type":"string"},"value":{"type":"string"}},"required":["id","type","value"]}}},"required":["items"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Contact method not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"delete":{"operationId":"contactMethodsContract.remove","tags":["Contact Methods"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"type":{"enum":["discord","signal","telegram","whatsapp","phone","email","in_person","other"],"type":"string"},"value":{"type":"string"}},"required":["id","type","value"]}}},"required":["items"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Contact method not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/contact-methods/reorder":{"post":{"operationId":"contactMethodsContract.reorder","tags":["Contact Methods"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"ids":{"type":"array","maxItems":500,"items":{"type":"string","format":"uuid"}}},"required":["ids"]}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"type":{"enum":["discord","signal","telegram","whatsapp","phone","email","in_person","other"],"type":"string"},"value":{"type":"string"}},"required":["id","type","value"]}}},"required":["items"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/copies":{"get":{"operationId":"copiesContract.list","tags":["Copies"],"parameters":[{"name":"cursor","in":"query","schema":{"type":"string","minLength":1},"allowEmptyValue":true,"allowReserved":true},{"name":"limit","in":"query","schema":{"type":"integer","minimum":1,"maximum":1000},"allowEmptyValue":true,"allowReserved":true}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"printingId":{"type":"string"},"collectionId":{"type":"string"},"groupId":{"anyOf":[{"type":"string"},{"type":"null"}]},"condition":{"anyOf":[{"type":"string"},{"type":"null"}]},"grader":{"anyOf":[{"type":"string"},{"type":"null"}]},"grade":{"anyOf":[{"type":"number"},{"type":"null"}]},"notesPublic":{"anyOf":[{"type":"string"},{"type":"null"}]},"isAltered":{"type":"boolean"},"links":{"type":"array","items":{"type":"object","properties":{"url":{"type":"string","maxLength":500,"format":"uri"},"label":{"type":"string","minLength":1,"maxLength":100}},"required":["url"]}},"notesPrivate":{"anyOf":[{"type":"string"},{"type":"null"}]},"onLoan":{"type":"boolean"},"reserved":{"type":"boolean"}},"required":["id","printingId","collectionId","groupId","condition","grader","grade","notesPublic","isAltered","links","notesPrivate","onLoan","reserved"]}},"nextCursor":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["items","nextCursor"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"post":{"operationId":"copiesContract.add","tags":["Copies"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"copies":{"type":"array","minItems":1,"maxItems":500,"items":{"type":"object","properties":{"printingId":{"type":"string","format":"uuid"},"collectionId":{"type":"string","format":"uuid"},"condition":{"anyOf":[{"type":"string","maxLength":50},{"type":"null"}]},"grader":{"anyOf":[{"type":"string","maxLength":50},{"type":"null"}]},"grade":{"anyOf":[{"type":"number","minimum":1,"maximum":10,"multipleOf":0.5},{"type":"null"}]},"notesPublic":{"anyOf":[{"type":"string","maxLength":2000},{"type":"null"}]},"notesPrivate":{"anyOf":[{"type":"string","maxLength":2000},{"type":"null"}]},"isAltered":{"type":"boolean"},"links":{"type":"array","maxItems":10,"items":{"type":"object","properties":{"url":{"type":"string","maxLength":500,"format":"uri"},"label":{"type":"string","minLength":1,"maxLength":100}},"required":["url"]}}},"required":["printingId"]}}},"required":["copies"]}}}},"responses":{"201":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"printingId":{"type":"string"},"collectionId":{"type":"string"},"groupId":{"anyOf":[{"type":"string"},{"type":"null"}]},"condition":{"anyOf":[{"type":"string"},{"type":"null"}]},"grader":{"anyOf":[{"type":"string"},{"type":"null"}]},"grade":{"anyOf":[{"type":"number"},{"type":"null"}]},"notesPublic":{"anyOf":[{"type":"string"},{"type":"null"}]},"isAltered":{"type":"boolean"},"links":{"type":"array","items":{"type":"object","properties":{"url":{"type":"string","maxLength":500,"format":"uri"},"label":{"type":"string","minLength":1,"maxLength":100}},"required":["url"]}},"notesPrivate":{"anyOf":[{"type":"string"},{"type":"null"}]},"onLoan":{"type":"boolean"},"reserved":{"type":"boolean"}},"required":["id","printingId","collectionId","groupId","condition","grader","grade","notesPublic","isAltered","links","notesPrivate","onLoan","reserved"]}}},"required":["items"]}}}},"400":{"description":"400","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"BAD_REQUEST"},"status":{"const":400},"message":{"type":"string","default":"One or more printings do not exist"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/copies/move":{"post":{"operationId":"copiesContract.move","tags":["Copies"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"copyIds":{"type":"array","minItems":1,"maxItems":500,"items":{"type":"string","format":"uuid"}},"toCollectionId":{"type":"string","format":"uuid"}},"required":["copyIds","toCollectionId"]}}}},"responses":{"204":{"description":"OK","content":{"application/json":{"schema":{"anyOf":[{},{"not":{}}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Target collection or copies not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/copies/update":{"post":{"operationId":"copiesContract.update","tags":["Copies"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"copyIds":{"type":"array","minItems":1,"maxItems":500,"items":{"type":"string","format":"uuid"}},"patch":{"type":"object","properties":{"condition":{"anyOf":[{"type":"string","maxLength":50},{"type":"null"}]},"grader":{"anyOf":[{"type":"string","maxLength":50},{"type":"null"}]},"grade":{"anyOf":[{"type":"number","minimum":1,"maximum":10,"multipleOf":0.5},{"type":"null"}]},"notesPublic":{"anyOf":[{"type":"string","maxLength":2000},{"type":"null"}]},"notesPrivate":{"anyOf":[{"type":"string","maxLength":2000},{"type":"null"}]},"isAltered":{"type":"boolean"},"links":{"type":"array","maxItems":10,"items":{"type":"object","properties":{"url":{"type":"string","maxLength":500,"format":"uri"},"label":{"type":"string","minLength":1,"maxLength":100}},"required":["url"]}}}}},"required":["copyIds","patch"]}}}},"responses":{"204":{"description":"OK","content":{"application/json":{"schema":{"anyOf":[{},{"not":{}}]}}}},"400":{"description":"400","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"BAD_REQUEST"},"status":{"const":400},"message":{"type":"string","default":"Unknown condition or grader"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"One or more copies not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/copies/dispose":{"post":{"operationId":"copiesContract.dispose","tags":["Copies"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"copyIds":{"type":"array","minItems":1,"maxItems":500,"items":{"type":"string","format":"uuid"}}},"required":["copyIds"]}}}},"responses":{"204":{"description":"OK","content":{"application/json":{"schema":{"anyOf":[{},{"not":{}}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"One or more copies not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"409":{"description":"409","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"CONFLICT"},"status":{"const":409},"message":{"type":"string","default":"One or more copies could not be disposed"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/copies/list-memberships":{"post":{"operationId":"copiesContract.listMemberships","tags":["Copies"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"copyIds":{"type":"array","minItems":1,"maxItems":500,"items":{"type":"string","format":"uuid"}},"excludeListId":{"type":"string","format":"uuid"}},"required":["copyIds"]}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"lists":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"copyCount":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["id","name","copyCount"]}},"copiesOnAnyList":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["lists","copiesOnAnyList"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/deck-check/claim/{token}":{"get":{"operationId":"deckCheckClaimContract.landing","tags":["Deck Check"],"parameters":[{"name":"token","in":"path","required":true,"schema":{"type":"string","minLength":1,"maxLength":64}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"tournamentId":{"type":"string"},"tournamentName":{"type":"string"},"startsAt":{"type":"string"},"hostName":{"type":"string"},"hostType":{"enum":["user","organization"],"type":"string"},"groupName":{"anyOf":[{"type":"string"},{"type":"null"}]},"deckSubmission":{"enum":["none","optional","required"],"type":"string"},"participantName":{"type":"string"}},"required":["tournamentId","tournamentName","startsAt","hostName","hostType","groupName","deckSubmission","participantName"]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Claim link not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}},"security":[]},"post":{"operationId":"deckCheckPlayerContract.claim","tags":["Deck Check"],"parameters":[{"name":"token","in":"path","required":true,"schema":{"type":"string","minLength":1,"maxLength":64}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"status":{"enum":["claimed","already","conflict","blocked","duplicate"],"type":"string"},"tournamentId":{"anyOf":[{"type":"string"},{"type":"null"}]},"entryId":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["status","tournamentId","entryId"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Claim link not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/ingest/deck-check":{"post":{"operationId":"deckCheckIngestContract.push","description":"Provider push for a tournament's deck check (ADR-025). Authenticated by the host's API key (`Authorization: Bearer <key>`). Pushes never create tournaments: the tournament is created in OpenRift and addressed by its `tournamentId`. Partial semantics: entries absent from a push are untouched; withdrawal is the explicit per-entry flag.","tags":["Deck Check"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"tournamentId":{"type":"string","format":"uuid"},"entries":{"type":"array","maxItems":500,"items":{"type":"object","properties":{"externalId":{"type":"string","minLength":1,"maxLength":200},"playerName":{"type":"string","minLength":1,"maxLength":120},"riotId":{"anyOf":[{"type":"string","maxLength":120},{"type":"null"}]},"submittedAt":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}]},"allowDeckPublishing":{"type":"boolean"},"allowNameSharing":{"type":"boolean"},"allowRiotIdSharing":{"type":"boolean"},"withdrawn":{"type":"boolean"},"cards":{"type":"array","maxItems":200,"items":{"type":"object","properties":{"name":{"type":"string","minLength":1,"maxLength":300},"quantity":{"type":"integer","minimum":1,"maximum":99},"section":{"type":"string","minLength":1,"maxLength":50}},"required":["name","quantity","section"]},"default":[]}},"required":["externalId","playerName"]},"default":[]}},"required":["tournamentId"]}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"tournamentId":{"type":"string"},"entriesCreated":{"type":"integer","minimum":0,"maximum":9007199254740991},"entriesUpdated":{"type":"integer","minimum":0,"maximum":9007199254740991},"entriesUnchanged":{"type":"integer","minimum":0,"maximum":9007199254740991},"entriesWithdrawn":{"type":"integer","minimum":0,"maximum":9007199254740991},"checksInvalidated":{"type":"integer","minimum":0,"maximum":9007199254740991},"entriesIgnored":{"type":"integer","minimum":0,"maximum":9007199254740991},"entries":{"type":"array","items":{"type":"object","properties":{"externalId":{"type":"string"},"entryId":{"type":"string"},"claimUrl":{"type":"string"}},"required":["externalId","entryId","claimUrl"]}}},"required":["tournamentId","entriesCreated","entriesUpdated","entriesUnchanged","entriesWithdrawn","checksInvalidated","entriesIgnored","entries"]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"409":{"description":"409","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"CONFLICT"},"status":{"const":409},"message":{"type":"string","default":"Tournament is not accepting submissions"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"422":{"description":"422","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"VALIDATION_ERROR"},"status":{"const":422},"message":{"type":"string","default":"Push contains invalid data"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}},"security":[{"bearerAuth":[]}]}},"/api/v1/me/deck-check-keys":{"get":{"operationId":"deckCheckKeysContract.listMine","tags":["Deck Check"],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"tokenPrefix":{"type":"string"},"label":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdByName":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdAt":{"type":"string"},"lastUsedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"revokedAt":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["id","tokenPrefix","label","createdByName","createdAt","lastUsedAt","revokedAt"]}}},"required":["items"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"post":{"operationId":"deckCheckKeysContract.mintMine","tags":["Deck Check"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"label":{"type":"string","minLength":1,"maxLength":120}},"required":["label"]}}}},"responses":{"201":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"key":{"type":"object","properties":{"id":{"type":"string"},"tokenPrefix":{"type":"string"},"label":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdByName":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdAt":{"type":"string"},"lastUsedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"revokedAt":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["id","tokenPrefix","label","createdByName","createdAt","lastUsedAt","revokedAt"]},"token":{"type":"string"}},"required":["key","token"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/me/deck-check-keys/{keyId}":{"patch":{"operationId":"deckCheckKeysContract.renameMine","tags":["Deck Check"],"parameters":[{"name":"keyId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"label":{"type":"string","minLength":1,"maxLength":120}},"required":["label"]}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"tokenPrefix":{"type":"string"},"label":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdByName":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdAt":{"type":"string"},"lastUsedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"revokedAt":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["id","tokenPrefix","label","createdByName","createdAt","lastUsedAt","revokedAt"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Key not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"delete":{"operationId":"deckCheckKeysContract.revokeMine","tags":["Deck Check"],"parameters":[{"name":"keyId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"204":{"description":"OK","content":{"application/json":{"schema":{"anyOf":[{},{"not":{}}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Key not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/me/deck-check-keys/{keyId}/permanent":{"delete":{"operationId":"deckCheckKeysContract.removeMine","tags":["Deck Check"],"parameters":[{"name":"keyId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"204":{"description":"OK","content":{"application/json":{"schema":{"anyOf":[{},{"not":{}}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Key not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/organizations/{orgId}/deck-check-keys":{"get":{"operationId":"deckCheckKeysContract.listForOrg","tags":["Deck Check"],"parameters":[{"name":"orgId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"tokenPrefix":{"type":"string"},"label":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdByName":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdAt":{"type":"string"},"lastUsedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"revokedAt":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["id","tokenPrefix","label","createdByName","createdAt","lastUsedAt","revokedAt"]}}},"required":["items"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Organization not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"post":{"operationId":"deckCheckKeysContract.mintForOrg","tags":["Deck Check"],"parameters":[{"name":"orgId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"label":{"type":"string","minLength":1,"maxLength":120}},"required":["label"]}}}},"responses":{"201":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"key":{"type":"object","properties":{"id":{"type":"string"},"tokenPrefix":{"type":"string"},"label":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdByName":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdAt":{"type":"string"},"lastUsedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"revokedAt":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["id","tokenPrefix","label","createdByName","createdAt","lastUsedAt","revokedAt"]},"token":{"type":"string"}},"required":["key","token"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Organization not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/organizations/{orgId}/deck-check-keys/{keyId}":{"patch":{"operationId":"deckCheckKeysContract.renameForOrg","tags":["Deck Check"],"parameters":[{"name":"orgId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"keyId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"label":{"type":"string","minLength":1,"maxLength":120}},"required":["label"]}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"tokenPrefix":{"type":"string"},"label":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdByName":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdAt":{"type":"string"},"lastUsedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"revokedAt":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["id","tokenPrefix","label","createdByName","createdAt","lastUsedAt","revokedAt"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Organization or key not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"delete":{"operationId":"deckCheckKeysContract.revokeForOrg","tags":["Deck Check"],"parameters":[{"name":"orgId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"keyId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"204":{"description":"OK","content":{"application/json":{"schema":{"anyOf":[{},{"not":{}}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Organization or key not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/organizations/{orgId}/deck-check-keys/{keyId}/permanent":{"delete":{"operationId":"deckCheckKeysContract.removeForOrg","tags":["Deck Check"],"parameters":[{"name":"orgId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"keyId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"204":{"description":"OK","content":{"application/json":{"schema":{"anyOf":[{},{"not":{}}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Organization or key not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/deck-check/mine/tournament/{tournamentId}":{"get":{"operationId":"deckCheckPlayerContract.getMine","tags":["Deck Check"],"parameters":[{"name":"tournamentId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"entry":{"type":"object","properties":{"id":{"type":"string"},"eventName":{"type":"string"},"eventDate":{"anyOf":[{"type":"string"},{"type":"null"}]},"groupName":{"anyOf":[{"type":"string"},{"type":"null"}]},"format":{"anyOf":[{"type":"string"},{"type":"null"}]},"allowedSets":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}]},"state":{"enum":["editable","submitted","approved","checked","withdrawn"],"type":"string"},"reviewOutcome":{"anyOf":[{"enum":["ok","issue"],"type":"string"},{"type":"null"}]},"unlockRequested":{"type":"boolean"},"playerMessage":{"anyOf":[{"type":"string"},{"type":"null"}]},"allowDeckPublishing":{"type":"boolean"},"allowNameSharing":{"type":"boolean"},"allowRiotIdSharing":{"type":"boolean"},"submittedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"submissionsCloseAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"updatedAt":{"type":"string"},"windowOpen":{"type":"boolean"},"canEdit":{"type":"boolean"},"canUnlock":{"type":"boolean"},"canRequestUnlock":{"type":"boolean"}},"required":["id","eventName","eventDate","groupName","format","allowedSets","state","reviewOutcome","unlockRequested","playerMessage","allowDeckPublishing","allowNameSharing","allowRiotIdSharing","submittedAt","submissionsCloseAt","updatedAt","windowOpen","canEdit","canUnlock","canRequestUnlock"]},"cards":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"sortOrder":{"type":"integer","minimum":0,"maximum":9007199254740991},"rawName":{"type":"string"},"section":{"type":"string"},"zone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow"],"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"matchStatus":{"enum":["matched","ambiguous","unmatched"],"type":"string"},"foundCopies":{"type":"array","items":{"type":"boolean"}},"resolvedCardId":{"anyOf":[{"type":"string"},{"type":"null"}]},"resolvedPrintingId":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["id","sortOrder","rawName","section","zone","quantity","matchStatus","foundCopies","resolvedCardId","resolvedPrintingId"]}},"violations":{"type":"array","items":{"type":"object","properties":{"zone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow","deck"],"type":"string"},"code":{"type":"string"},"message":{"type":"string"},"cardId":{"type":"string"}},"required":["zone","code","message"]}},"typeCounts":{"type":"array","items":{"type":"object","properties":{"cardType":{"type":"string"},"count":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["cardType","count"]}},"domainDistribution":{"type":"array","items":{"type":"object","properties":{"domain":{"type":"string"},"count":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["domain","count"]}}},"required":["entry","cards","violations","typeCounts","domainDistribution"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Entry not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/deck-check/mine/{entryId}/list":{"put":{"operationId":"deckCheckPlayerContract.editList","tags":["Deck Check"],"parameters":[{"name":"entryId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"requestBody":{"required":false,"content":{"application/json":{"schema":{"type":"object","properties":{"deckId":{"type":"string","format":"uuid"},"deckCode":{"type":"string","minLength":1,"maxLength":4000},"cards":{"type":"array","minItems":1,"maxItems":200,"items":{"type":"object","properties":{"name":{"type":"string","minLength":1,"maxLength":300},"quantity":{"type":"integer","minimum":1,"maximum":99},"section":{"type":"string","minLength":1,"maxLength":50}},"required":["name","quantity","section"]}},"allowDeckPublishing":{"type":"boolean"},"allowNameSharing":{"type":"boolean"},"allowRiotIdSharing":{"type":"boolean"},"dryRun":{"type":"boolean"}}}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"entryId":{"anyOf":[{"type":"string"},{"type":"null"}]},"tournamentId":{"type":"string"},"cards":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"sortOrder":{"type":"integer","minimum":0,"maximum":9007199254740991},"rawName":{"type":"string"},"section":{"type":"string"},"zone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow"],"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"matchStatus":{"enum":["matched","ambiguous","unmatched"],"type":"string"},"foundCopies":{"type":"array","items":{"type":"boolean"}},"resolvedCardId":{"anyOf":[{"type":"string"},{"type":"null"}]},"resolvedPrintingId":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["id","sortOrder","rawName","section","zone","quantity","matchStatus","foundCopies","resolvedCardId","resolvedPrintingId"]}},"violations":{"type":"array","items":{"type":"object","properties":{"zone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow","deck"],"type":"string"},"code":{"type":"string"},"message":{"type":"string"},"cardId":{"type":"string"}},"required":["zone","code","message"]}}},"required":["entryId","tournamentId","cards","violations"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Entry or deck not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"409":{"description":"409","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"CONFLICT"},"status":{"const":409},"message":{"type":"string","default":"Submissions are closed or the deck is locked"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"422":{"description":"422","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"VALIDATION_ERROR"},"status":{"const":422},"message":{"type":"string","default":"Invalid deck section or deck code"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/deck-check/mine/{entryId}/submit":{"post":{"operationId":"deckCheckPlayerContract.submit","tags":["Deck Check"],"parameters":[{"name":"entryId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"entry":{"type":"object","properties":{"id":{"type":"string"},"eventName":{"type":"string"},"eventDate":{"anyOf":[{"type":"string"},{"type":"null"}]},"groupName":{"anyOf":[{"type":"string"},{"type":"null"}]},"format":{"anyOf":[{"type":"string"},{"type":"null"}]},"allowedSets":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}]},"state":{"enum":["editable","submitted","approved","checked","withdrawn"],"type":"string"},"reviewOutcome":{"anyOf":[{"enum":["ok","issue"],"type":"string"},{"type":"null"}]},"unlockRequested":{"type":"boolean"},"playerMessage":{"anyOf":[{"type":"string"},{"type":"null"}]},"allowDeckPublishing":{"type":"boolean"},"allowNameSharing":{"type":"boolean"},"allowRiotIdSharing":{"type":"boolean"},"submittedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"submissionsCloseAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"updatedAt":{"type":"string"},"windowOpen":{"type":"boolean"},"canEdit":{"type":"boolean"},"canUnlock":{"type":"boolean"},"canRequestUnlock":{"type":"boolean"}},"required":["id","eventName","eventDate","groupName","format","allowedSets","state","reviewOutcome","unlockRequested","playerMessage","allowDeckPublishing","allowNameSharing","allowRiotIdSharing","submittedAt","submissionsCloseAt","updatedAt","windowOpen","canEdit","canUnlock","canRequestUnlock"]},"cards":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"sortOrder":{"type":"integer","minimum":0,"maximum":9007199254740991},"rawName":{"type":"string"},"section":{"type":"string"},"zone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow"],"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"matchStatus":{"enum":["matched","ambiguous","unmatched"],"type":"string"},"foundCopies":{"type":"array","items":{"type":"boolean"}},"resolvedCardId":{"anyOf":[{"type":"string"},{"type":"null"}]},"resolvedPrintingId":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["id","sortOrder","rawName","section","zone","quantity","matchStatus","foundCopies","resolvedCardId","resolvedPrintingId"]}},"violations":{"type":"array","items":{"type":"object","properties":{"zone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow","deck"],"type":"string"},"code":{"type":"string"},"message":{"type":"string"},"cardId":{"type":"string"}},"required":["zone","code","message"]}},"typeCounts":{"type":"array","items":{"type":"object","properties":{"cardType":{"type":"string"},"count":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["cardType","count"]}},"domainDistribution":{"type":"array","items":{"type":"object","properties":{"domain":{"type":"string"},"count":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["domain","count"]}}},"required":["entry","cards","violations","typeCounts","domainDistribution"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Entry not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"409":{"description":"409","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"CONFLICT"},"status":{"const":409},"message":{"type":"string","default":"Submissions are closed or the deck is not editable"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/deck-check/mine/{entryId}/unlock":{"post":{"operationId":"deckCheckPlayerContract.unlock","tags":["Deck Check"],"parameters":[{"name":"entryId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"entry":{"type":"object","properties":{"id":{"type":"string"},"eventName":{"type":"string"},"eventDate":{"anyOf":[{"type":"string"},{"type":"null"}]},"groupName":{"anyOf":[{"type":"string"},{"type":"null"}]},"format":{"anyOf":[{"type":"string"},{"type":"null"}]},"allowedSets":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}]},"state":{"enum":["editable","submitted","approved","checked","withdrawn"],"type":"string"},"reviewOutcome":{"anyOf":[{"enum":["ok","issue"],"type":"string"},{"type":"null"}]},"unlockRequested":{"type":"boolean"},"playerMessage":{"anyOf":[{"type":"string"},{"type":"null"}]},"allowDeckPublishing":{"type":"boolean"},"allowNameSharing":{"type":"boolean"},"allowRiotIdSharing":{"type":"boolean"},"submittedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"submissionsCloseAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"updatedAt":{"type":"string"},"windowOpen":{"type":"boolean"},"canEdit":{"type":"boolean"},"canUnlock":{"type":"boolean"},"canRequestUnlock":{"type":"boolean"}},"required":["id","eventName","eventDate","groupName","format","allowedSets","state","reviewOutcome","unlockRequested","playerMessage","allowDeckPublishing","allowNameSharing","allowRiotIdSharing","submittedAt","submissionsCloseAt","updatedAt","windowOpen","canEdit","canUnlock","canRequestUnlock"]},"cards":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"sortOrder":{"type":"integer","minimum":0,"maximum":9007199254740991},"rawName":{"type":"string"},"section":{"type":"string"},"zone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow"],"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"matchStatus":{"enum":["matched","ambiguous","unmatched"],"type":"string"},"foundCopies":{"type":"array","items":{"type":"boolean"}},"resolvedCardId":{"anyOf":[{"type":"string"},{"type":"null"}]},"resolvedPrintingId":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["id","sortOrder","rawName","section","zone","quantity","matchStatus","foundCopies","resolvedCardId","resolvedPrintingId"]}},"violations":{"type":"array","items":{"type":"object","properties":{"zone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow","deck"],"type":"string"},"code":{"type":"string"},"message":{"type":"string"},"cardId":{"type":"string"}},"required":["zone","code","message"]}},"typeCounts":{"type":"array","items":{"type":"object","properties":{"cardType":{"type":"string"},"count":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["cardType","count"]}},"domainDistribution":{"type":"array","items":{"type":"object","properties":{"domain":{"type":"string"},"count":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["domain","count"]}}},"required":["entry","cards","violations","typeCounts","domainDistribution"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Entry not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"409":{"description":"409","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"CONFLICT"},"status":{"const":409},"message":{"type":"string","default":"Submissions are closed or the deck cannot be unlocked"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"delete":{"operationId":"deckCheckPlayerContract.cancelUnlock","tags":["Deck Check"],"parameters":[{"name":"entryId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"entry":{"type":"object","properties":{"id":{"type":"string"},"eventName":{"type":"string"},"eventDate":{"anyOf":[{"type":"string"},{"type":"null"}]},"groupName":{"anyOf":[{"type":"string"},{"type":"null"}]},"format":{"anyOf":[{"type":"string"},{"type":"null"}]},"allowedSets":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}]},"state":{"enum":["editable","submitted","approved","checked","withdrawn"],"type":"string"},"reviewOutcome":{"anyOf":[{"enum":["ok","issue"],"type":"string"},{"type":"null"}]},"unlockRequested":{"type":"boolean"},"playerMessage":{"anyOf":[{"type":"string"},{"type":"null"}]},"allowDeckPublishing":{"type":"boolean"},"allowNameSharing":{"type":"boolean"},"allowRiotIdSharing":{"type":"boolean"},"submittedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"submissionsCloseAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"updatedAt":{"type":"string"},"windowOpen":{"type":"boolean"},"canEdit":{"type":"boolean"},"canUnlock":{"type":"boolean"},"canRequestUnlock":{"type":"boolean"}},"required":["id","eventName","eventDate","groupName","format","allowedSets","state","reviewOutcome","unlockRequested","playerMessage","allowDeckPublishing","allowNameSharing","allowRiotIdSharing","submittedAt","submissionsCloseAt","updatedAt","windowOpen","canEdit","canUnlock","canRequestUnlock"]},"cards":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"sortOrder":{"type":"integer","minimum":0,"maximum":9007199254740991},"rawName":{"type":"string"},"section":{"type":"string"},"zone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow"],"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"matchStatus":{"enum":["matched","ambiguous","unmatched"],"type":"string"},"foundCopies":{"type":"array","items":{"type":"boolean"}},"resolvedCardId":{"anyOf":[{"type":"string"},{"type":"null"}]},"resolvedPrintingId":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["id","sortOrder","rawName","section","zone","quantity","matchStatus","foundCopies","resolvedCardId","resolvedPrintingId"]}},"violations":{"type":"array","items":{"type":"object","properties":{"zone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow","deck"],"type":"string"},"code":{"type":"string"},"message":{"type":"string"},"cardId":{"type":"string"}},"required":["zone","code","message"]}},"typeCounts":{"type":"array","items":{"type":"object","properties":{"cardType":{"type":"string"},"count":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["cardType","count"]}},"domainDistribution":{"type":"array","items":{"type":"object","properties":{"domain":{"type":"string"},"count":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["domain","count"]}}},"required":["entry","cards","violations","typeCounts","domainDistribution"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Entry not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/deck-check/submissions/{token}":{"get":{"operationId":"deckCheckPlayerContract.submissionPage","tags":["Deck Check"],"parameters":[{"name":"token","in":"path","required":true,"schema":{"type":"string","minLength":1,"maxLength":64}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"eventName":{"type":"string"},"eventDate":{"anyOf":[{"type":"string"},{"type":"null"}]},"groupName":{"type":"string"},"format":{"anyOf":[{"type":"string"},{"type":"null"}]},"allowedSets":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}]},"submissionsCloseAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"submissionsOpen":{"type":"boolean"},"linkedEntry":{"anyOf":[{"type":"object","properties":{"id":{"type":"string"},"state":{"enum":["editable","submitted","approved","checked","withdrawn"],"type":"string"},"canReplace":{"type":"boolean"},"allowDeckPublishing":{"type":"boolean"},"allowNameSharing":{"type":"boolean"},"allowRiotIdSharing":{"type":"boolean"}},"required":["id","state","canReplace","allowDeckPublishing","allowNameSharing","allowRiotIdSharing"]},{"type":"null"}]}},"required":["eventName","eventDate","groupName","format","allowedSets","submissionsCloseAt","submissionsOpen","linkedEntry"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Submission link not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"post":{"operationId":"deckCheckPlayerContract.submitToToken","tags":["Deck Check"],"parameters":[{"name":"token","in":"path","required":true,"schema":{"type":"string","minLength":1,"maxLength":64}}],"requestBody":{"required":false,"content":{"application/json":{"schema":{"type":"object","properties":{"deckId":{"type":"string","format":"uuid"},"deckCode":{"type":"string","minLength":1,"maxLength":4000},"cards":{"type":"array","minItems":1,"maxItems":200,"items":{"type":"object","properties":{"name":{"type":"string","minLength":1,"maxLength":300},"quantity":{"type":"integer","minimum":1,"maximum":99},"section":{"type":"string","minLength":1,"maxLength":50}},"required":["name","quantity","section"]}},"allowDeckPublishing":{"type":"boolean"},"allowNameSharing":{"type":"boolean"},"allowRiotIdSharing":{"type":"boolean"},"dryRun":{"type":"boolean"}}}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"entryId":{"anyOf":[{"type":"string"},{"type":"null"}]},"tournamentId":{"type":"string"},"cards":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"sortOrder":{"type":"integer","minimum":0,"maximum":9007199254740991},"rawName":{"type":"string"},"section":{"type":"string"},"zone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow"],"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"matchStatus":{"enum":["matched","ambiguous","unmatched"],"type":"string"},"foundCopies":{"type":"array","items":{"type":"boolean"}},"resolvedCardId":{"anyOf":[{"type":"string"},{"type":"null"}]},"resolvedPrintingId":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["id","sortOrder","rawName","section","zone","quantity","matchStatus","foundCopies","resolvedCardId","resolvedPrintingId"]}},"violations":{"type":"array","items":{"type":"object","properties":{"zone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow","deck"],"type":"string"},"code":{"type":"string"},"message":{"type":"string"},"cardId":{"type":"string"}},"required":["zone","code","message"]}}},"required":["entryId","tournamentId","cards","violations"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Submission link or account not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"409":{"description":"409","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"CONFLICT"},"status":{"const":409},"message":{"type":"string","default":"Submissions are closed or the entry is locked"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"422":{"description":"422","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"VALIDATION_ERROR"},"status":{"const":422},"message":{"type":"string","default":"Invalid deck section or deck code"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/decks":{"get":{"operationId":"decksContract.list","tags":["Decks"],"parameters":[{"name":"wanted","in":"query","schema":{"enum":["true","false"],"type":"string"},"allowEmptyValue":true,"allowReserved":true},{"name":"includeArchived","in":"query","schema":{"enum":["true","false"],"type":"string"},"allowEmptyValue":true,"allowReserved":true}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"deck":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"format":{"type":"string"},"formatConfig":{"anyOf":[{"type":"object","properties":{"tagSlugs":{"type":"array","items":{"type":"string"}}}},{"type":"null"}]},"isPinned":{"type":"boolean"},"archivedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","name","format","formatConfig","isPinned","archivedAt","createdAt","updatedAt"]},"legendCardId":{"anyOf":[{"type":"string"},{"type":"null"}]},"championCardId":{"anyOf":[{"type":"string"},{"type":"null"}]},"totalCards":{"type":"number"},"typeCounts":{"type":"array","items":{"type":"object","properties":{"cardType":{"type":"string"},"count":{"type":"number"}},"required":["cardType","count"]}},"domainDistribution":{"type":"array","items":{"type":"object","properties":{"domain":{"type":"string"},"count":{"type":"number"}},"required":["domain","count"]}},"isValid":{"type":"boolean"},"totalValueCents":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"missingCount":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]}},"required":["deck","legendCardId","championCardId","totalCards","typeCounts","domainDistribution","isValid","totalValueCents","missingCount"]}}},"required":["items"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"post":{"operationId":"decksContract.create","tags":["Decks"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string","minLength":1,"maxLength":200},"description":{"anyOf":[{"type":"string","maxLength":2000},{"type":"null"}]},"format":{"type":"string","minLength":1},"formatConfig":{"anyOf":[{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}},{"type":"null"}]},"isWanted":{"type":"boolean"},"isPublic":{"type":"boolean"}},"required":["name","format"]}}}},"responses":{"201":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"format":{"type":"string"},"formatConfig":{"anyOf":[{"type":"object","properties":{"tagSlugs":{"type":"array","items":{"type":"string"}}}},{"type":"null"}]},"isWanted":{"type":"boolean"},"isPublic":{"type":"boolean"},"shareToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"isPinned":{"type":"boolean"},"archivedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","name","description","format","formatConfig","isWanted","isPublic","shareToken","isPinned","archivedAt","createdAt","updatedAt"]}}}},"400":{"description":"400","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"BAD_REQUEST"},"status":{"const":400},"message":{"type":"string","default":"Unknown format or invalid format config"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/decks/{id}":{"get":{"operationId":"decksContract.get","tags":["Decks"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"deck":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"format":{"type":"string"},"formatConfig":{"anyOf":[{"type":"object","properties":{"tagSlugs":{"type":"array","items":{"type":"string"}}}},{"type":"null"}]},"isWanted":{"type":"boolean"},"isPublic":{"type":"boolean"},"shareToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"isPinned":{"type":"boolean"},"archivedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","name","description","format","formatConfig","isWanted","isPublic","shareToken","isPinned","archivedAt","createdAt","updatedAt"]},"cards":{"type":"array","items":{"type":"object","properties":{"cardId":{"type":"string"},"zone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow"],"type":"string"},"quantity":{"type":"number"},"preferredPrintingId":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["cardId","zone","quantity","preferredPrintingId"]}}},"required":["deck","cards"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Deck not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"patch":{"operationId":"decksContract.update","tags":["Decks"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"requestBody":{"required":false,"content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string","minLength":1,"maxLength":200},"description":{"anyOf":[{"type":"string","maxLength":2000},{"type":"null"}]},"format":{"type":"string","minLength":1},"formatConfig":{"anyOf":[{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}},{"type":"null"}]},"isWanted":{"type":"boolean"}}}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"format":{"type":"string"},"formatConfig":{"anyOf":[{"type":"object","properties":{"tagSlugs":{"type":"array","items":{"type":"string"}}}},{"type":"null"}]},"isWanted":{"type":"boolean"},"isPublic":{"type":"boolean"},"shareToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"isPinned":{"type":"boolean"},"archivedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","name","description","format","formatConfig","isWanted","isPublic","shareToken","isPinned","archivedAt","createdAt","updatedAt"]}}}},"400":{"description":"400","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"BAD_REQUEST"},"status":{"const":400},"message":{"type":"string","default":"Unknown format or invalid format config"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Deck not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"delete":{"operationId":"decksContract.remove","tags":["Decks"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"204":{"description":"OK","content":{"application/json":{"schema":{"anyOf":[{},{"not":{}}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Deck not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/decks/{id}/cards":{"put":{"operationId":"decksContract.replaceCards","tags":["Decks"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"cards":{"type":"array","maxItems":500,"items":{"type":"object","properties":{"cardId":{"type":"string","format":"uuid"},"zone":{"type":"string","minLength":1},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"preferredPrintingId":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}]}},"required":["cardId","zone","quantity"]}}},"required":["cards"]}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"cards":{"type":"array","items":{"type":"object","properties":{"cardId":{"type":"string"},"zone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow"],"type":"string"},"quantity":{"type":"number"},"preferredPrintingId":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["cardId","zone","quantity","preferredPrintingId"]}}},"required":["cards"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Deck not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/decks/{id}/plan":{"get":{"operationId":"decksContract.getPlan","tags":["Decks"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"plan":{"type":"object","properties":{"generalStrategy":{"type":"string"},"mulliganSplit":{"type":"boolean"},"mulliganGeneral":{"type":"string"},"mulliganFirst":{"type":"string"},"mulliganSecond":{"type":"string"},"battlefieldGame1CardId":{"anyOf":[{"type":"string"},{"type":"null"}]},"battlefieldFirstCardId":{"anyOf":[{"type":"string"},{"type":"null"}]},"battlefieldSecondCardId":{"anyOf":[{"type":"string"},{"type":"null"}]},"battlefieldCustom":{"type":"boolean"},"battlefieldNote":{"type":"string"},"matchups":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"opponentCardId":{"anyOf":[{"type":"string"},{"type":"null"}]},"opponentLabel":{"type":"string"},"notes":{"type":"string"},"swaps":{"type":"array","items":{"type":"object","properties":{"cardId":{"type":"string"},"direction":{"enum":["in","out"],"type":"string"},"quantity":{"type":"number"}},"required":["cardId","direction","quantity"]}}},"required":["id","opponentCardId","opponentLabel","notes","swaps"]}}},"required":["generalStrategy","mulliganSplit","mulliganGeneral","mulliganFirst","mulliganSecond","battlefieldGame1CardId","battlefieldFirstCardId","battlefieldSecondCardId","battlefieldCustom","battlefieldNote","matchups"]}},"required":["plan"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Deck not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"put":{"operationId":"decksContract.replacePlan","tags":["Decks"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"generalStrategy":{"type":"string","maxLength":8000,"default":""},"mulliganSplit":{"type":"boolean","default":false},"mulliganGeneral":{"type":"string","maxLength":4000,"default":""},"mulliganFirst":{"type":"string","maxLength":4000,"default":""},"mulliganSecond":{"type":"string","maxLength":4000,"default":""},"battlefieldGame1CardId":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"default":null},"battlefieldFirstCardId":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"default":null},"battlefieldSecondCardId":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"default":null},"battlefieldCustom":{"type":"boolean","default":false},"battlefieldNote":{"type":"string","maxLength":4000,"default":""},"matchups":{"type":"array","maxItems":40,"items":{"type":"object","properties":{"opponentCardId":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"default":null},"opponentLabel":{"type":"string","maxLength":120,"default":""},"notes":{"type":"string","maxLength":4000,"default":""},"swaps":{"type":"array","maxItems":40,"items":{"type":"object","properties":{"cardId":{"type":"string","format":"uuid"},"direction":{"enum":["in","out"],"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":99,"exclusiveMinimum":0}},"required":["cardId","direction","quantity"]}}},"required":["swaps"]}}},"required":["matchups"]}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"plan":{"type":"object","properties":{"generalStrategy":{"type":"string"},"mulliganSplit":{"type":"boolean"},"mulliganGeneral":{"type":"string"},"mulliganFirst":{"type":"string"},"mulliganSecond":{"type":"string"},"battlefieldGame1CardId":{"anyOf":[{"type":"string"},{"type":"null"}]},"battlefieldFirstCardId":{"anyOf":[{"type":"string"},{"type":"null"}]},"battlefieldSecondCardId":{"anyOf":[{"type":"string"},{"type":"null"}]},"battlefieldCustom":{"type":"boolean"},"battlefieldNote":{"type":"string"},"matchups":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"opponentCardId":{"anyOf":[{"type":"string"},{"type":"null"}]},"opponentLabel":{"type":"string"},"notes":{"type":"string"},"swaps":{"type":"array","items":{"type":"object","properties":{"cardId":{"type":"string"},"direction":{"enum":["in","out"],"type":"string"},"quantity":{"type":"number"}},"required":["cardId","direction","quantity"]}}},"required":["id","opponentCardId","opponentLabel","notes","swaps"]}}},"required":["generalStrategy","mulliganSplit","mulliganGeneral","mulliganFirst","mulliganSecond","battlefieldGame1CardId","battlefieldFirstCardId","battlefieldSecondCardId","battlefieldCustom","battlefieldNote","matchups"]}},"required":["plan"]}}}},"400":{"description":"400","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"BAD_REQUEST"},"status":{"const":400},"message":{"type":"string","default":"Invalid plan content"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Deck not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/decks/{id}/clone":{"post":{"operationId":"decksContract.clone","tags":["Decks"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"201":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"format":{"type":"string"},"formatConfig":{"anyOf":[{"type":"object","properties":{"tagSlugs":{"type":"array","items":{"type":"string"}}}},{"type":"null"}]},"isWanted":{"type":"boolean"},"isPublic":{"type":"boolean"},"shareToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"isPinned":{"type":"boolean"},"archivedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","name","description","format","formatConfig","isWanted","isPublic","shareToken","isPinned","archivedAt","createdAt","updatedAt"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Deck not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/decks/{id}/export":{"get":{"operationId":"decksContract.export","tags":["Decks"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"format","in":"query","schema":{"enum":["piltover","text","tts"],"type":"string","default":"piltover"},"allowEmptyValue":true,"allowReserved":true}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"code":{"type":"string"},"warnings":{"type":"array","items":{"type":"string"}}},"required":["code","warnings"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Deck not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/decks/{id}/pin":{"patch":{"operationId":"decksContract.setPinned","tags":["Decks"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"isPinned":{"type":"boolean"}},"required":["isPinned"]}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"format":{"type":"string"},"formatConfig":{"anyOf":[{"type":"object","properties":{"tagSlugs":{"type":"array","items":{"type":"string"}}}},{"type":"null"}]},"isWanted":{"type":"boolean"},"isPublic":{"type":"boolean"},"shareToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"isPinned":{"type":"boolean"},"archivedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","name","description","format","formatConfig","isWanted","isPublic","shareToken","isPinned","archivedAt","createdAt","updatedAt"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Deck not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/decks/{id}/archive":{"patch":{"operationId":"decksContract.setArchived","tags":["Decks"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"archived":{"type":"boolean"}},"required":["archived"]}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"format":{"type":"string"},"formatConfig":{"anyOf":[{"type":"object","properties":{"tagSlugs":{"type":"array","items":{"type":"string"}}}},{"type":"null"}]},"isWanted":{"type":"boolean"},"isPublic":{"type":"boolean"},"shareToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"isPinned":{"type":"boolean"},"archivedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","name","description","format","formatConfig","isWanted","isPublic","shareToken","isPinned","archivedAt","createdAt","updatedAt"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Deck not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/decks/{id}/share":{"get":{"operationId":"decksContract.getShare","tags":["Decks"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"shareToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"isPublic":{"type":"boolean"}},"required":["shareToken","isPublic"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Deck not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"post":{"operationId":"decksContract.share","tags":["Decks"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"shareToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"isPublic":{"type":"boolean"}},"required":["shareToken","isPublic"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Deck not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"delete":{"operationId":"decksContract.unshare","tags":["Decks"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"204":{"description":"OK","content":{"application/json":{"schema":{"anyOf":[{},{"not":{}}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Deck not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/decks/{id}/share/rotate":{"post":{"operationId":"decksContract.rotateShare","tags":["Decks"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"shareToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"isPublic":{"type":"boolean"}},"required":["shareToken","isPublic"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Deck not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/decks/share/{token}/clone":{"post":{"operationId":"decksContract.cloneShared","tags":["Decks"],"parameters":[{"name":"token","in":"path","required":true,"schema":{"type":"string","minLength":1}}],"responses":{"201":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"deckId":{"type":"string"}},"required":["deckId"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Shared deck not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/feature-flags":{"get":{"operationId":"featureFlagsContract.get","tags":["Feature Flags"],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"flags":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"boolean"}}},"required":["flags"]}}}}},"security":[]}},"/api/v1/friend-groups":{"get":{"operationId":"friendGroupsContract.list","tags":["Friend Groups"],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"slug":{"type":"string"},"name":{"type":"string"},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"code":{"anyOf":[{"type":"string"},{"type":"null"}]},"codeRotatedAt":{"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"viewerRole":{"enum":["owner","admin","member"],"type":"string"},"memberCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"pendingRequestCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"memberPreviews":{"type":"array","items":{"type":"object","properties":{"userId":{"type":"string"},"userName":{"anyOf":[{"type":"string"},{"type":"null"}]},"userImage":{"anyOf":[{"type":"string"},{"type":"null"}]},"gravatarHash":{"type":"string"}},"required":["userId","userName","userImage","gravatarHash"]}},"sharedListCount":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["id","slug","name","description","code","codeRotatedAt","createdAt","updatedAt","viewerRole","memberCount","pendingRequestCount","memberPreviews","sharedListCount"]}},"pendingInvites":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"groupId":{"type":"string"},"groupSlug":{"type":"string"},"groupName":{"type":"string"},"createdAt":{"type":"string"},"memberCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"memberPreviews":{"type":"array","items":{"type":"object","properties":{"userId":{"type":"string"},"userName":{"anyOf":[{"type":"string"},{"type":"null"}]},"userImage":{"anyOf":[{"type":"string"},{"type":"null"}]},"gravatarHash":{"type":"string"}},"required":["userId","userName","userImage","gravatarHash"]}}},"required":["id","groupId","groupSlug","groupName","createdAt","memberCount","memberPreviews"]}},"outgoingRequests":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"groupId":{"type":"string"},"groupSlug":{"type":"string"},"groupName":{"type":"string"},"createdAt":{"type":"string"},"memberCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"memberPreviews":{"type":"array","items":{"type":"object","properties":{"userId":{"type":"string"},"userName":{"anyOf":[{"type":"string"},{"type":"null"}]},"userImage":{"anyOf":[{"type":"string"},{"type":"null"}]},"gravatarHash":{"type":"string"}},"required":["userId","userName","userImage","gravatarHash"]}}},"required":["id","groupId","groupSlug","groupName","createdAt","memberCount","memberPreviews"]}}},"required":["items","pendingInvites","outgoingRequests"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"post":{"operationId":"friendGroupsContract.create","tags":["Friend Groups"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"slug":{"type":"string","minLength":3,"maxLength":30,"pattern":"^[a-z0-9][a-z0-9-]+$"},"name":{"type":"string","minLength":1,"maxLength":60},"description":{"anyOf":[{"type":"string","maxLength":500},{"type":"null"}]},"generateCode":{"type":"boolean","default":true}},"required":["slug","name"]}}}},"responses":{"201":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"slug":{"type":"string"},"name":{"type":"string"},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"code":{"anyOf":[{"type":"string"},{"type":"null"}]},"codeRotatedAt":{"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","slug","name","description","code","codeRotatedAt","createdAt","updatedAt"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"409":{"description":"409","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"CONFLICT"},"status":{"const":409},"message":{"type":"string","default":"Slug already in use"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/friend-groups/pending-invites-count":{"get":{"operationId":"friendGroupsContract.pendingInvitesCount","tags":["Friend Groups"],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"count":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["count"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/friend-groups/pending-requests-count":{"get":{"operationId":"friendGroupsContract.pendingRequestsCount","tags":["Friend Groups"],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"count":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["count"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/friend-groups/preview":{"get":{"operationId":"friendGroupsContract.preview","tags":["Friend Groups"],"parameters":[{"name":"code","in":"query","required":true,"schema":{"type":"string","minLength":8,"maxLength":64},"allowEmptyValue":true,"allowReserved":true}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"slug":{"type":"string"},"name":{"type":"string"},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"memberCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"viewerStatus":{"enum":["available","pending","member"],"type":"string"}},"required":["id","slug","name","description","memberCount","viewerStatus"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Group not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/friend-groups/join":{"post":{"operationId":"friendGroupsContract.join","tags":["Friend Groups"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"code":{"type":"string","minLength":8,"maxLength":64}},"required":["code"]}}}},"responses":{"202":{"description":"OK","content":{"application/json":{"schema":{"anyOf":[{},{"not":{}}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Group not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"409":{"description":"409","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"CONFLICT"},"status":{"const":409},"message":{"type":"string","default":"Already a member of that group"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/friend-groups/{slug}":{"get":{"operationId":"friendGroupsContract.get","tags":["Friend Groups"],"parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string","minLength":3,"maxLength":30,"pattern":"^[a-z0-9][a-z0-9-]+$"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"group":{"type":"object","properties":{"id":{"type":"string"},"slug":{"type":"string"},"name":{"type":"string"},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"code":{"anyOf":[{"type":"string"},{"type":"null"}]},"codeRotatedAt":{"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","slug","name","description","code","codeRotatedAt","createdAt","updatedAt"]},"viewerStatus":{"enum":["member","pending"],"type":"string"},"viewerRole":{"anyOf":[{"enum":["owner","admin","member"],"type":"string"},{"type":"null"}]},"members":{"type":"array","items":{"type":"object","properties":{"userId":{"type":"string"},"userName":{"anyOf":[{"type":"string"},{"type":"null"}]},"userImage":{"anyOf":[{"type":"string"},{"type":"null"}]},"gravatarHash":{"type":"string"},"role":{"enum":["owner","admin","member"],"type":"string"},"contactMethods":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"type":{"enum":["discord","signal","telegram","whatsapp","phone","email","in_person","other"],"type":"string"},"value":{"type":"string"}},"required":["id","type","value"]}},"joinedAt":{"type":"string"}},"required":["userId","userName","userImage","gravatarHash","role","contactMethods","joinedAt"]}},"shares":{"type":"array","items":{"type":"object","properties":{"groupId":{"type":"string"},"listId":{"type":"string"},"listName":{"type":"string"},"listIntent":{"enum":["wish","trade","organize"],"type":"string"},"listKind":{"enum":["card","printing","copy"],"type":"string"},"entryCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"userId":{"type":"string"},"userName":{"anyOf":[{"type":"string"},{"type":"null"}]},"sharedAt":{"type":"string"}},"required":["groupId","listId","listName","listIntent","listKind","entryCount","userId","userName","sharedAt"]}},"collectionShares":{"type":"array","items":{"type":"object","properties":{"groupId":{"type":"string"},"collectionId":{"type":"string"},"collectionName":{"type":"string"},"userId":{"type":"string"},"userName":{"anyOf":[{"type":"string"},{"type":"null"}]},"sharedAt":{"type":"string"},"copyCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"coverPrintings":{"type":"array","items":{"type":"object","properties":{"printingId":{"type":"string"},"imageId":{"type":"string"}},"required":["printingId","imageId"]},"default":[]}},"required":["groupId","collectionId","collectionName","userId","userName","sharedAt","copyCount"]}},"pendingRequests":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"userId":{"type":"string"},"userName":{"anyOf":[{"type":"string"},{"type":"null"}]},"userImage":{"anyOf":[{"type":"string"},{"type":"null"}]},"gravatarHash":{"type":"string"},"createdAt":{"type":"string"}},"required":["id","userId","userName","userImage","gravatarHash","createdAt"]}},"cardsTradedCount":{"type":"integer","minimum":0,"maximum":9007199254740991,"default":0},"cardsTradedByMember":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"integer","minimum":0,"maximum":9007199254740991},"default":{}}},"required":["group","viewerStatus","viewerRole","members","shares","collectionShares","pendingRequests"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Group not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"patch":{"operationId":"friendGroupsContract.update","tags":["Friend Groups"],"parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string","minLength":3,"maxLength":30,"pattern":"^[a-z0-9][a-z0-9-]+$"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"slug":{"type":"string","minLength":3,"maxLength":30,"pattern":"^[a-z0-9][a-z0-9-]+$"},"name":{"type":"string","minLength":1,"maxLength":60},"description":{"anyOf":[{"type":"string","maxLength":500},{"type":"null"}]}}}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"slug":{"type":"string"},"name":{"type":"string"},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"code":{"anyOf":[{"type":"string"},{"type":"null"}]},"codeRotatedAt":{"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","slug","name","description","code","codeRotatedAt","createdAt","updatedAt"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Group not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"409":{"description":"409","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"CONFLICT"},"status":{"const":409},"message":{"type":"string","default":"Slug already in use"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"delete":{"operationId":"friendGroupsContract.remove","tags":["Friend Groups"],"parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string","minLength":3,"maxLength":30,"pattern":"^[a-z0-9][a-z0-9-]+$"}}],"responses":{"204":{"description":"OK","content":{"application/json":{"schema":{"anyOf":[{},{"not":{}}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Group not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/friend-groups/{slug}/code/rotate":{"post":{"operationId":"friendGroupsContract.rotateCode","tags":["Friend Groups"],"parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string","minLength":3,"maxLength":30,"pattern":"^[a-z0-9][a-z0-9-]+$"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"slug":{"type":"string"},"name":{"type":"string"},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"code":{"anyOf":[{"type":"string"},{"type":"null"}]},"codeRotatedAt":{"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","slug","name","description","code","codeRotatedAt","createdAt","updatedAt"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Group not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/friend-groups/{slug}/code":{"delete":{"operationId":"friendGroupsContract.disableCode","tags":["Friend Groups"],"parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string","minLength":3,"maxLength":30,"pattern":"^[a-z0-9][a-z0-9-]+$"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"slug":{"type":"string"},"name":{"type":"string"},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"code":{"anyOf":[{"type":"string"},{"type":"null"}]},"codeRotatedAt":{"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","slug","name","description","code","codeRotatedAt","createdAt","updatedAt"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Group not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"post":{"operationId":"friendGroupsContract.enableCode","tags":["Friend Groups"],"parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string","minLength":3,"maxLength":30,"pattern":"^[a-z0-9][a-z0-9-]+$"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"slug":{"type":"string"},"name":{"type":"string"},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"code":{"anyOf":[{"type":"string"},{"type":"null"}]},"codeRotatedAt":{"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","slug","name","description","code","codeRotatedAt","createdAt","updatedAt"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Group not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/friend-groups/{slug}/invites":{"post":{"operationId":"friendGroupsContract.inviteByEmail","tags":["Friend Groups"],"parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string","minLength":3,"maxLength":30,"pattern":"^[a-z0-9][a-z0-9-]+$"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"email":{"type":"string","maxLength":320,"format":"email"}},"required":["email"]}}}},"responses":{"201":{"description":"OK","content":{"application/json":{"schema":{"anyOf":[{},{"not":{}}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"User or group not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"409":{"description":"409","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"CONFLICT"},"status":{"const":409},"message":{"type":"string","default":"User is already a member"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/friend-groups/{slug}/invites/{userId}/accept":{"post":{"operationId":"friendGroupsContract.acceptInvite","tags":["Friend Groups"],"parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string","minLength":3,"maxLength":30,"pattern":"^[a-z0-9][a-z0-9-]+$"}},{"name":"userId","in":"path","required":true,"schema":{"type":"string","minLength":1}}],"responses":{"204":{"description":"OK","content":{"application/json":{"schema":{"anyOf":[{},{"not":{}}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Group or invite not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/friend-groups/{slug}/invites/{userId}":{"delete":{"operationId":"friendGroupsContract.declineInvite","tags":["Friend Groups"],"parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string","minLength":3,"maxLength":30,"pattern":"^[a-z0-9][a-z0-9-]+$"}},{"name":"userId","in":"path","required":true,"schema":{"type":"string","minLength":1}}],"responses":{"204":{"description":"OK","content":{"application/json":{"schema":{"anyOf":[{},{"not":{}}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Group or invite not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/friend-groups/{slug}/leave":{"post":{"operationId":"friendGroupsContract.leave","tags":["Friend Groups"],"parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string","minLength":3,"maxLength":30,"pattern":"^[a-z0-9][a-z0-9-]+$"}}],"responses":{"204":{"description":"OK","content":{"application/json":{"schema":{"anyOf":[{},{"not":{}}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Group not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"409":{"description":"409","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"CONFLICT"},"status":{"const":409},"message":{"type":"string","default":"Transfer ownership before leaving"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/friend-groups/{slug}/transfer-ownership":{"post":{"operationId":"friendGroupsContract.transferOwnership","tags":["Friend Groups"],"parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string","minLength":3,"maxLength":30,"pattern":"^[a-z0-9][a-z0-9-]+$"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"userId":{"type":"string","minLength":1}},"required":["userId"]}}}},"responses":{"204":{"description":"OK","content":{"application/json":{"schema":{"anyOf":[{},{"not":{}}]}}}},"400":{"description":"400","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"BAD_REQUEST"},"status":{"const":400},"message":{"type":"string","default":"Invalid transfer target"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Group not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/friend-groups/{slug}/members/{userId}/role":{"patch":{"operationId":"friendGroupsContract.updateRole","tags":["Friend Groups"],"parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string","minLength":3,"maxLength":30,"pattern":"^[a-z0-9][a-z0-9-]+$"}},{"name":"userId","in":"path","required":true,"schema":{"type":"string","minLength":1}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"role":{"enum":["admin","member"],"type":"string"}},"required":["role"]}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"userId":{"type":"string"},"userName":{"anyOf":[{"type":"string"},{"type":"null"}]},"userImage":{"anyOf":[{"type":"string"},{"type":"null"}]},"gravatarHash":{"type":"string"},"role":{"enum":["owner","admin","member"],"type":"string"},"contactMethods":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"type":{"enum":["discord","signal","telegram","whatsapp","phone","email","in_person","other"],"type":"string"},"value":{"type":"string"}},"required":["id","type","value"]}},"joinedAt":{"type":"string"}},"required":["userId","userName","userImage","gravatarHash","role","contactMethods","joinedAt"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Member not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"409":{"description":"409","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"CONFLICT"},"status":{"const":409},"message":{"type":"string","default":"Cannot change that member's role"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/friend-groups/{slug}/members/{userId}/contacts":{"put":{"operationId":"friendGroupsContract.setRevealedContacts","tags":["Friend Groups"],"parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string","minLength":3,"maxLength":30,"pattern":"^[a-z0-9][a-z0-9-]+$"}},{"name":"userId","in":"path","required":true,"schema":{"type":"string","minLength":1}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"contactMethodIds":{"type":"array","maxItems":500,"items":{"type":"string","format":"uuid"}}},"required":["contactMethodIds"]}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"userId":{"type":"string"},"userName":{"anyOf":[{"type":"string"},{"type":"null"}]},"userImage":{"anyOf":[{"type":"string"},{"type":"null"}]},"gravatarHash":{"type":"string"},"role":{"enum":["owner","admin","member"],"type":"string"},"contactMethods":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"type":{"enum":["discord","signal","telegram","whatsapp","phone","email","in_person","other"],"type":"string"},"value":{"type":"string"}},"required":["id","type","value"]}},"joinedAt":{"type":"string"}},"required":["userId","userName","userImage","gravatarHash","role","contactMethods","joinedAt"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Member not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/friend-groups/{slug}/members/{userId}":{"delete":{"operationId":"friendGroupsContract.kickMember","tags":["Friend Groups"],"parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string","minLength":3,"maxLength":30,"pattern":"^[a-z0-9][a-z0-9-]+$"}},{"name":"userId","in":"path","required":true,"schema":{"type":"string","minLength":1}}],"responses":{"204":{"description":"OK","content":{"application/json":{"schema":{"anyOf":[{},{"not":{}}]}}}},"400":{"description":"400","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"BAD_REQUEST"},"status":{"const":400},"message":{"type":"string","default":"Cannot kick yourself"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Member not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"409":{"description":"409","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"CONFLICT"},"status":{"const":409},"message":{"type":"string","default":"Cannot kick the owner"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"get":{"operationId":"friendGroupsContract.getMemberDetail","tags":["Friend Groups"],"parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string","minLength":3,"maxLength":30,"pattern":"^[a-z0-9][a-z0-9-]+$"}},{"name":"userId","in":"path","required":true,"schema":{"type":"string","minLength":1}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"member":{"type":"object","properties":{"userId":{"type":"string"},"userName":{"anyOf":[{"type":"string"},{"type":"null"}]},"userImage":{"anyOf":[{"type":"string"},{"type":"null"}]},"gravatarHash":{"type":"string"},"role":{"enum":["owner","admin","member"],"type":"string"},"contactMethods":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"type":{"enum":["discord","signal","telegram","whatsapp","phone","email","in_person","other"],"type":"string"},"value":{"type":"string"}},"required":["id","type","value"]}},"joinedAt":{"type":"string"}},"required":["userId","userName","userImage","gravatarHash","role","contactMethods","joinedAt"]},"shares":{"type":"array","items":{"type":"object","properties":{"groupId":{"type":"string"},"listId":{"type":"string"},"listName":{"type":"string"},"listIntent":{"enum":["wish","trade","organize"],"type":"string"},"listKind":{"enum":["card","printing","copy"],"type":"string"},"entryCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"userId":{"type":"string"},"userName":{"anyOf":[{"type":"string"},{"type":"null"}]},"sharedAt":{"type":"string"}},"required":["groupId","listId","listName","listIntent","listKind","entryCount","userId","userName","sharedAt"]}},"collectionShares":{"type":"array","items":{"type":"object","properties":{"groupId":{"type":"string"},"collectionId":{"type":"string"},"collectionName":{"type":"string"},"userId":{"type":"string"},"userName":{"anyOf":[{"type":"string"},{"type":"null"}]},"sharedAt":{"type":"string"},"copyCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"coverPrintings":{"type":"array","items":{"type":"object","properties":{"printingId":{"type":"string"},"imageId":{"type":"string"}},"required":["printingId","imageId"]},"default":[]}},"required":["groupId","collectionId","collectionName","userId","userName","sharedAt","copyCount"]}},"matches":{"type":"array","items":{"type":"object","properties":{"counterpartyUserId":{"type":"string"},"counterpartyName":{"anyOf":[{"type":"string"},{"type":"null"}]},"counterpartyImage":{"anyOf":[{"type":"string"},{"type":"null"}]},"counterpartyGravatarHash":{"type":"string"},"counterpartyListId":{"type":"string"},"counterpartyListName":{"type":"string"},"viewerListName":{"type":"string"},"sellEntryId":{"anyOf":[{"type":"string"},{"type":"null"}]},"sellListId":{"type":"string"},"copyId":{"type":"string"},"condition":{"anyOf":[{"type":"string"},{"type":"null"}]},"grader":{"anyOf":[{"type":"string"},{"type":"null"}]},"grade":{"anyOf":[{"type":"number"},{"type":"null"}]},"notesPublic":{"anyOf":[{"type":"string"},{"type":"null"}]},"printingId":{"type":"string"},"cardId":{"type":"string"},"cardName":{"type":"string"},"setId":{"type":"string"},"rarity":{"type":"string"},"finish":{"type":"string"},"imageId":{"anyOf":[{"type":"string"},{"type":"null"}]},"buyEntryId":{"anyOf":[{"type":"string"},{"type":"null"}]},"buyListId":{"type":"string"},"buyEntryKind":{"enum":["card","printing"],"type":"string"},"buyQuantity":{"type":"integer","minimum":0,"maximum":9007199254740991},"sellPref":{"type":"object","properties":{"pricePref":{"anyOf":[{"enum":["cm_lowest","tcg_lowest","ct_zero","absolute"],"type":"string"},{"type":"null"}]},"priceAbsoluteCents":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},{"type":"null"}]},"tradeType":{"anyOf":[{"enum":["cards","money","both"],"type":"string"},{"type":"null"}]},"currency":{"anyOf":[{"enum":["EUR","USD"],"type":"string"},{"type":"null"}]}},"required":["pricePref","priceAbsoluteCents","tradeType","currency"]},"buyPref":{"type":"object","properties":{"pricePref":{"anyOf":[{"enum":["cm_lowest","tcg_lowest","ct_zero","absolute"],"type":"string"},{"type":"null"}]},"priceAbsoluteCents":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},{"type":"null"}]},"tradeType":{"anyOf":[{"enum":["cards","money","both"],"type":"string"},{"type":"null"}]},"currency":{"anyOf":[{"enum":["EUR","USD"],"type":"string"},{"type":"null"}]}},"required":["pricePref","priceAbsoluteCents","tradeType","currency"]}},"required":["counterpartyUserId","counterpartyName","counterpartyImage","counterpartyGravatarHash","counterpartyListId","counterpartyListName","viewerListName","sellEntryId","sellListId","copyId","condition","grader","grade","notesPublic","printingId","cardId","cardName","setId","rarity","finish","imageId","buyEntryId","buyListId","buyEntryKind","buyQuantity","sellPref","buyPref"]}},"reverseMatches":{"type":"array","items":{"type":"object","properties":{"counterpartyUserId":{"type":"string"},"counterpartyName":{"anyOf":[{"type":"string"},{"type":"null"}]},"counterpartyImage":{"anyOf":[{"type":"string"},{"type":"null"}]},"counterpartyGravatarHash":{"type":"string"},"counterpartyListId":{"type":"string"},"counterpartyListName":{"type":"string"},"viewerListName":{"type":"string"},"sellEntryId":{"anyOf":[{"type":"string"},{"type":"null"}]},"sellListId":{"type":"string"},"copyId":{"type":"string"},"condition":{"anyOf":[{"type":"string"},{"type":"null"}]},"grader":{"anyOf":[{"type":"string"},{"type":"null"}]},"grade":{"anyOf":[{"type":"number"},{"type":"null"}]},"notesPublic":{"anyOf":[{"type":"string"},{"type":"null"}]},"printingId":{"type":"string"},"cardId":{"type":"string"},"cardName":{"type":"string"},"setId":{"type":"string"},"rarity":{"type":"string"},"finish":{"type":"string"},"imageId":{"anyOf":[{"type":"string"},{"type":"null"}]},"buyEntryId":{"anyOf":[{"type":"string"},{"type":"null"}]},"buyListId":{"type":"string"},"buyEntryKind":{"enum":["card","printing"],"type":"string"},"buyQuantity":{"type":"integer","minimum":0,"maximum":9007199254740991},"sellPref":{"type":"object","properties":{"pricePref":{"anyOf":[{"enum":["cm_lowest","tcg_lowest","ct_zero","absolute"],"type":"string"},{"type":"null"}]},"priceAbsoluteCents":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},{"type":"null"}]},"tradeType":{"anyOf":[{"enum":["cards","money","both"],"type":"string"},{"type":"null"}]},"currency":{"anyOf":[{"enum":["EUR","USD"],"type":"string"},{"type":"null"}]}},"required":["pricePref","priceAbsoluteCents","tradeType","currency"]},"buyPref":{"type":"object","properties":{"pricePref":{"anyOf":[{"enum":["cm_lowest","tcg_lowest","ct_zero","absolute"],"type":"string"},{"type":"null"}]},"priceAbsoluteCents":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},{"type":"null"}]},"tradeType":{"anyOf":[{"enum":["cards","money","both"],"type":"string"},{"type":"null"}]},"currency":{"anyOf":[{"enum":["EUR","USD"],"type":"string"},{"type":"null"}]}},"required":["pricePref","priceAbsoluteCents","tradeType","currency"]}},"required":["counterpartyUserId","counterpartyName","counterpartyImage","counterpartyGravatarHash","counterpartyListId","counterpartyListName","viewerListName","sellEntryId","sellListId","copyId","condition","grader","grade","notesPublic","printingId","cardId","cardName","setId","rarity","finish","imageId","buyEntryId","buyListId","buyEntryKind","buyQuantity","sellPref","buyPref"]}}},"required":["member","shares","collectionShares","matches","reverseMatches"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Member not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/friend-groups/{slug}/shareable-lists":{"get":{"operationId":"friendGroupsContract.shareableLists","tags":["Friend Groups"],"parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string","minLength":3,"maxLength":30,"pattern":"^[a-z0-9][a-z0-9-]+$"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"listId":{"type":"string"},"listName":{"type":"string"},"listIntent":{"enum":["wish","trade","organize"],"type":"string"},"listKind":{"enum":["card","printing","copy"],"type":"string"},"entryCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"sharedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"tradeDefaults":{"type":"object","properties":{"pricePref":{"anyOf":[{"enum":["cm_lowest","tcg_lowest","ct_zero","absolute"],"type":"string"},{"type":"null"}]},"priceAbsoluteCents":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},{"type":"null"}]},"tradeType":{"anyOf":[{"enum":["cards","money","both"],"type":"string"},{"type":"null"}]}},"required":["pricePref","priceAbsoluteCents","tradeType"]},"currency":{"anyOf":[{"enum":["EUR","USD"],"type":"string"},{"type":"null"}]},"hasRule":{"type":"boolean"}},"required":["listId","listName","listIntent","listKind","entryCount","sharedAt","tradeDefaults","currency","hasRule"]}}},"required":["items"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Group not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/friend-groups/{slug}/lists":{"post":{"operationId":"friendGroupsContract.shareList","tags":["Friend Groups"],"parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string","minLength":3,"maxLength":30,"pattern":"^[a-z0-9][a-z0-9-]+$"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"listId":{"type":"string","format":"uuid"}},"required":["listId"]}}}},"responses":{"204":{"description":"OK","content":{"application/json":{"schema":{"anyOf":[{},{"not":{}}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Group or list not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/friend-groups/{slug}/lists/{listId}":{"delete":{"operationId":"friendGroupsContract.unshareList","tags":["Friend Groups"],"parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string","minLength":3,"maxLength":30,"pattern":"^[a-z0-9][a-z0-9-]+$"}},{"name":"listId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"204":{"description":"OK","content":{"application/json":{"schema":{"anyOf":[{},{"not":{}}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Group or list not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"get":{"operationId":"friendGroupsContract.getSharedList","tags":["Friend Groups"],"parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string","minLength":3,"maxLength":30,"pattern":"^[a-z0-9][a-z0-9-]+$"}},{"name":"listId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"list":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"intent":{"enum":["wish","trade","organize"],"type":"string"},"kind":{"enum":["card","printing","copy"],"type":"string"},"ownerUserId":{"type":"string"},"ownerName":{"anyOf":[{"type":"string"},{"type":"null"}]},"tradeDefaults":{"type":"object","properties":{"pricePref":{"anyOf":[{"enum":["cm_lowest","tcg_lowest","ct_zero","absolute"],"type":"string"},{"type":"null"}]},"priceAbsoluteCents":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},{"type":"null"}]},"tradeType":{"anyOf":[{"enum":["cards","money","both"],"type":"string"},{"type":"null"}]}},"required":["pricePref","priceAbsoluteCents","tradeType"]},"currency":{"anyOf":[{"enum":["EUR","USD"],"type":"string"},{"type":"null"}]}},"required":["id","name","intent","kind","ownerUserId","ownerName","tradeDefaults","currency"]},"entries":{"type":"array","items":{"anyOf":[{"type":"object","properties":{"id":{"anyOf":[{"type":"string"},{"type":"null"}]},"listId":{"type":"string"},"quantity":{"type":"number"},"tradeOverride":{"type":"object","properties":{"pricePref":{"anyOf":[{"enum":["cm_lowest","tcg_lowest","ct_zero","absolute"],"type":"string"},{"type":"null"}]},"priceAbsoluteCents":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},{"type":"null"}]},"tradeType":{"anyOf":[{"enum":["cards","money","both"],"type":"string"},{"type":"null"}]}},"required":["pricePref","priceAbsoluteCents","tradeType"]},"source":{"enum":["manual","rule","both"],"type":"string"},"ruleQuantity":{"type":"number"},"cardName":{"type":"string"},"kind":{"const":"card"},"cardId":{"type":"string"}},"required":["id","listId","quantity","tradeOverride","source","ruleQuantity","cardName","kind","cardId"]},{"type":"object","properties":{"id":{"anyOf":[{"type":"string"},{"type":"null"}]},"listId":{"type":"string"},"quantity":{"type":"number"},"tradeOverride":{"type":"object","properties":{"pricePref":{"anyOf":[{"enum":["cm_lowest","tcg_lowest","ct_zero","absolute"],"type":"string"},{"type":"null"}]},"priceAbsoluteCents":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},{"type":"null"}]},"tradeType":{"anyOf":[{"enum":["cards","money","both"],"type":"string"},{"type":"null"}]}},"required":["pricePref","priceAbsoluteCents","tradeType"]},"source":{"enum":["manual","rule","both"],"type":"string"},"ruleQuantity":{"type":"number"},"cardName":{"type":"string"},"kind":{"const":"printing"},"printingId":{"type":"string"},"setId":{"type":"string"},"rarity":{"type":"string"},"finish":{"type":"string"},"shortCode":{"type":"string"},"language":{"type":"string"},"imageId":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["id","listId","quantity","tradeOverride","source","ruleQuantity","cardName","kind","printingId","setId","rarity","finish","shortCode","language","imageId"]},{"type":"object","properties":{"id":{"anyOf":[{"type":"string"},{"type":"null"}]},"listId":{"type":"string"},"quantity":{"type":"number"},"tradeOverride":{"type":"object","properties":{"pricePref":{"anyOf":[{"enum":["cm_lowest","tcg_lowest","ct_zero","absolute"],"type":"string"},{"type":"null"}]},"priceAbsoluteCents":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},{"type":"null"}]},"tradeType":{"anyOf":[{"enum":["cards","money","both"],"type":"string"},{"type":"null"}]}},"required":["pricePref","priceAbsoluteCents","tradeType"]},"source":{"enum":["manual","rule","both"],"type":"string"},"ruleQuantity":{"type":"number"},"cardName":{"type":"string"},"kind":{"const":"copy"},"copyId":{"type":"string"},"printingId":{"type":"string"},"setId":{"type":"string"},"rarity":{"type":"string"},"finish":{"type":"string"},"shortCode":{"type":"string"},"language":{"type":"string"},"imageId":{"anyOf":[{"type":"string"},{"type":"null"}]},"reserved":{"type":"boolean"},"onLoan":{"type":"boolean"}},"required":["id","listId","quantity","tradeOverride","source","ruleQuantity","cardName","kind","copyId","printingId","setId","rarity","finish","shortCode","language","imageId","reserved","onLoan"]}]}}},"required":["list","entries"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Group or list not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/friend-groups/{slug}/shareable-collections":{"get":{"operationId":"friendGroupsContract.shareableCollections","tags":["Friend Groups"],"parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string","minLength":3,"maxLength":30,"pattern":"^[a-z0-9][a-z0-9-]+$"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"collectionId":{"type":"string"},"collectionName":{"type":"string"},"sharedAt":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["collectionId","collectionName","sharedAt"]}}},"required":["items"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Group not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/friend-groups/{slug}/collections":{"post":{"operationId":"friendGroupsContract.shareCollection","tags":["Friend Groups"],"parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string","minLength":3,"maxLength":30,"pattern":"^[a-z0-9][a-z0-9-]+$"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"collectionId":{"type":"string","format":"uuid"}},"required":["collectionId"]}}}},"responses":{"204":{"description":"OK","content":{"application/json":{"schema":{"anyOf":[{},{"not":{}}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Group or collection not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/friend-groups/{slug}/collections/{collectionId}":{"delete":{"operationId":"friendGroupsContract.unshareCollection","tags":["Friend Groups"],"parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string","minLength":3,"maxLength":30,"pattern":"^[a-z0-9][a-z0-9-]+$"}},{"name":"collectionId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"204":{"description":"OK","content":{"application/json":{"schema":{"anyOf":[{},{"not":{}}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Group or collection not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"get":{"operationId":"friendGroupsContract.getSharedCollection","tags":["Friend Groups"],"parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string","minLength":3,"maxLength":30,"pattern":"^[a-z0-9][a-z0-9-]+$"}},{"name":"collectionId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"collection":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"copyCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"totalValueCents":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"unpricedCopyCount":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"ownerUserId":{"type":"string"},"ownerName":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["id","name","description","copyCount","totalValueCents","unpricedCopyCount","ownerUserId","ownerName"]},"copies":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"printingId":{"type":"string"},"collectionId":{"type":"string"},"groupId":{"anyOf":[{"type":"string"},{"type":"null"}]},"condition":{"anyOf":[{"type":"string"},{"type":"null"}]},"grader":{"anyOf":[{"type":"string"},{"type":"null"}]},"grade":{"anyOf":[{"type":"number"},{"type":"null"}]},"notesPublic":{"anyOf":[{"type":"string"},{"type":"null"}]},"isAltered":{"type":"boolean"},"links":{"type":"array","items":{"type":"object","properties":{"url":{"type":"string","maxLength":500,"format":"uri"},"label":{"type":"string","minLength":1,"maxLength":100}},"required":["url"]}},"notesPrivate":{"anyOf":[{"type":"string"},{"type":"null"}]},"onLoan":{"type":"boolean"},"reserved":{"type":"boolean"}},"required":["id","printingId","collectionId","groupId","condition","grader","grade","notesPublic","isAltered","links","notesPrivate","onLoan","reserved"]}},"viewerRole":{"enum":["owner","admin","member"],"type":"string"}},"required":["collection","copies","viewerRole"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Group or collection not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/friend-groups/{slug}/matches":{"get":{"operationId":"friendGroupsContract.matches","tags":["Friend Groups"],"parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string","minLength":3,"maxLength":30,"pattern":"^[a-z0-9][a-z0-9-]+$"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"othersHaveYourWants":{"type":"array","items":{"type":"object","properties":{"counterpartyUserId":{"type":"string"},"counterpartyName":{"anyOf":[{"type":"string"},{"type":"null"}]},"counterpartyImage":{"anyOf":[{"type":"string"},{"type":"null"}]},"counterpartyGravatarHash":{"type":"string"},"counterpartyListId":{"type":"string"},"counterpartyListName":{"type":"string"},"viewerListName":{"type":"string"},"sellEntryId":{"anyOf":[{"type":"string"},{"type":"null"}]},"sellListId":{"type":"string"},"copyId":{"type":"string"},"condition":{"anyOf":[{"type":"string"},{"type":"null"}]},"grader":{"anyOf":[{"type":"string"},{"type":"null"}]},"grade":{"anyOf":[{"type":"number"},{"type":"null"}]},"notesPublic":{"anyOf":[{"type":"string"},{"type":"null"}]},"printingId":{"type":"string"},"cardId":{"type":"string"},"cardName":{"type":"string"},"setId":{"type":"string"},"rarity":{"type":"string"},"finish":{"type":"string"},"imageId":{"anyOf":[{"type":"string"},{"type":"null"}]},"buyEntryId":{"anyOf":[{"type":"string"},{"type":"null"}]},"buyListId":{"type":"string"},"buyEntryKind":{"enum":["card","printing"],"type":"string"},"buyQuantity":{"type":"integer","minimum":0,"maximum":9007199254740991},"sellPref":{"type":"object","properties":{"pricePref":{"anyOf":[{"enum":["cm_lowest","tcg_lowest","ct_zero","absolute"],"type":"string"},{"type":"null"}]},"priceAbsoluteCents":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},{"type":"null"}]},"tradeType":{"anyOf":[{"enum":["cards","money","both"],"type":"string"},{"type":"null"}]},"currency":{"anyOf":[{"enum":["EUR","USD"],"type":"string"},{"type":"null"}]}},"required":["pricePref","priceAbsoluteCents","tradeType","currency"]},"buyPref":{"type":"object","properties":{"pricePref":{"anyOf":[{"enum":["cm_lowest","tcg_lowest","ct_zero","absolute"],"type":"string"},{"type":"null"}]},"priceAbsoluteCents":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},{"type":"null"}]},"tradeType":{"anyOf":[{"enum":["cards","money","both"],"type":"string"},{"type":"null"}]},"currency":{"anyOf":[{"enum":["EUR","USD"],"type":"string"},{"type":"null"}]}},"required":["pricePref","priceAbsoluteCents","tradeType","currency"]}},"required":["counterpartyUserId","counterpartyName","counterpartyImage","counterpartyGravatarHash","counterpartyListId","counterpartyListName","viewerListName","sellEntryId","sellListId","copyId","condition","grader","grade","notesPublic","printingId","cardId","cardName","setId","rarity","finish","imageId","buyEntryId","buyListId","buyEntryKind","buyQuantity","sellPref","buyPref"]}},"othersWantYourHaves":{"type":"array","items":{"type":"object","properties":{"counterpartyUserId":{"type":"string"},"counterpartyName":{"anyOf":[{"type":"string"},{"type":"null"}]},"counterpartyImage":{"anyOf":[{"type":"string"},{"type":"null"}]},"counterpartyGravatarHash":{"type":"string"},"counterpartyListId":{"type":"string"},"counterpartyListName":{"type":"string"},"viewerListName":{"type":"string"},"sellEntryId":{"anyOf":[{"type":"string"},{"type":"null"}]},"sellListId":{"type":"string"},"copyId":{"type":"string"},"condition":{"anyOf":[{"type":"string"},{"type":"null"}]},"grader":{"anyOf":[{"type":"string"},{"type":"null"}]},"grade":{"anyOf":[{"type":"number"},{"type":"null"}]},"notesPublic":{"anyOf":[{"type":"string"},{"type":"null"}]},"printingId":{"type":"string"},"cardId":{"type":"string"},"cardName":{"type":"string"},"setId":{"type":"string"},"rarity":{"type":"string"},"finish":{"type":"string"},"imageId":{"anyOf":[{"type":"string"},{"type":"null"}]},"buyEntryId":{"anyOf":[{"type":"string"},{"type":"null"}]},"buyListId":{"type":"string"},"buyEntryKind":{"enum":["card","printing"],"type":"string"},"buyQuantity":{"type":"integer","minimum":0,"maximum":9007199254740991},"sellPref":{"type":"object","properties":{"pricePref":{"anyOf":[{"enum":["cm_lowest","tcg_lowest","ct_zero","absolute"],"type":"string"},{"type":"null"}]},"priceAbsoluteCents":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},{"type":"null"}]},"tradeType":{"anyOf":[{"enum":["cards","money","both"],"type":"string"},{"type":"null"}]},"currency":{"anyOf":[{"enum":["EUR","USD"],"type":"string"},{"type":"null"}]}},"required":["pricePref","priceAbsoluteCents","tradeType","currency"]},"buyPref":{"type":"object","properties":{"pricePref":{"anyOf":[{"enum":["cm_lowest","tcg_lowest","ct_zero","absolute"],"type":"string"},{"type":"null"}]},"priceAbsoluteCents":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},{"type":"null"}]},"tradeType":{"anyOf":[{"enum":["cards","money","both"],"type":"string"},{"type":"null"}]},"currency":{"anyOf":[{"enum":["EUR","USD"],"type":"string"},{"type":"null"}]}},"required":["pricePref","priceAbsoluteCents","tradeType","currency"]}},"required":["counterpartyUserId","counterpartyName","counterpartyImage","counterpartyGravatarHash","counterpartyListId","counterpartyListName","viewerListName","sellEntryId","sellListId","copyId","condition","grader","grade","notesPublic","printingId","cardId","cardName","setId","rarity","finish","imageId","buyEntryId","buyListId","buyEntryKind","buyQuantity","sellPref","buyPref"]}}},"required":["othersHaveYourWants","othersWantYourHaves"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Group not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/friend-groups/{slug}/activity":{"get":{"operationId":"friendGroupsContract.activity","tags":["Friend Groups"],"parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string","minLength":3,"maxLength":30,"pattern":"^[a-z0-9][a-z0-9-]+$"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"events":{"type":"array","items":{"anyOf":[{"type":"object","properties":{"kind":{"const":"trade-completed"},"at":{"type":"string"},"tradeId":{"type":"string"},"printingId":{"type":"string"},"cardId":{"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"giverUserId":{"type":"string"},"giverName":{"anyOf":[{"type":"string"},{"type":"null"}]},"receiverUserId":{"type":"string"},"receiverName":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["kind","at","tradeId","printingId","cardId","quantity","giverUserId","giverName","receiverUserId","receiverName"]},{"type":"object","properties":{"kind":{"const":"member-joined"},"at":{"type":"string"},"userId":{"type":"string"},"userName":{"anyOf":[{"type":"string"},{"type":"null"}]},"userImage":{"anyOf":[{"type":"string"},{"type":"null"}]},"gravatarHash":{"type":"string"}},"required":["kind","at","userId","userName","userImage","gravatarHash"]},{"type":"object","properties":{"kind":{"const":"list-shared"},"at":{"type":"string"},"userId":{"type":"string"},"userName":{"anyOf":[{"type":"string"},{"type":"null"}]},"listId":{"type":"string"},"listName":{"type":"string"},"listIntent":{"enum":["wish","trade","organize"],"type":"string"},"listKind":{"enum":["card","printing","copy"],"type":"string"}},"required":["kind","at","userId","userName","listId","listName","listIntent","listKind"]},{"type":"object","properties":{"kind":{"const":"collection-shared"},"at":{"type":"string"},"userId":{"type":"string"},"userName":{"anyOf":[{"type":"string"},{"type":"null"}]},"collectionId":{"type":"string"},"collectionName":{"type":"string"}},"required":["kind","at","userId","userName","collectionId","collectionName"]},{"type":"object","properties":{"kind":{"const":"match"},"at":{"type":"string"},"counterpartyUserId":{"type":"string"},"counterpartyName":{"anyOf":[{"type":"string"},{"type":"null"}]},"counterpartyImage":{"anyOf":[{"type":"string"},{"type":"null"}]},"counterpartyGravatarHash":{"type":"string"},"printingId":{"type":"string"},"cardId":{"type":"string"}},"required":["kind","at","counterpartyUserId","counterpartyName","counterpartyImage","counterpartyGravatarHash","printingId","cardId"]}]}}},"required":["events"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Group not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/init":{"get":{"operationId":"initContract.get","tags":["Init"],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"enums":{"type":"object","properties":{"cardTypes":{"type":"array","items":{"type":"object","properties":{"slug":{"type":"string"},"label":{"type":"string"},"sortOrder":{"type":"number"}},"required":["slug","label","sortOrder"]}},"rarities":{"type":"array","items":{"type":"object","properties":{"slug":{"type":"string"},"label":{"type":"string"},"sortOrder":{"type":"number"},"color":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["slug","label","sortOrder","color"]}},"domains":{"type":"array","items":{"type":"object","properties":{"slug":{"type":"string"},"label":{"type":"string"},"sortOrder":{"type":"number"},"color":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["slug","label","sortOrder","color"]}},"superTypes":{"type":"array","items":{"type":"object","properties":{"slug":{"type":"string"},"label":{"type":"string"},"sortOrder":{"type":"number"}},"required":["slug","label","sortOrder"]}},"finishes":{"type":"array","items":{"type":"object","properties":{"slug":{"type":"string"},"label":{"type":"string"},"sortOrder":{"type":"number"}},"required":["slug","label","sortOrder"]}},"artVariants":{"type":"array","items":{"type":"object","properties":{"slug":{"type":"string"},"label":{"type":"string"},"sortOrder":{"type":"number"}},"required":["slug","label","sortOrder"]}},"cardSizes":{"type":"array","items":{"type":"object","properties":{"slug":{"type":"string"},"label":{"type":"string"},"sortOrder":{"type":"number"}},"required":["slug","label","sortOrder"]}},"deckFormats":{"type":"array","items":{"type":"object","properties":{"slug":{"type":"string"},"label":{"type":"string"},"sortOrder":{"type":"number"}},"required":["slug","label","sortOrder"]}},"deckZones":{"type":"array","items":{"type":"object","properties":{"slug":{"type":"string"},"label":{"type":"string"},"sortOrder":{"type":"number"}},"required":["slug","label","sortOrder"]}},"conditions":{"type":"array","items":{"type":"object","properties":{"slug":{"type":"string"},"label":{"type":"string"},"sortOrder":{"type":"number"}},"required":["slug","label","sortOrder"]}},"graders":{"type":"array","items":{"type":"object","properties":{"slug":{"type":"string"},"label":{"type":"string"},"sortOrder":{"type":"number"}},"required":["slug","label","sortOrder"]}},"languages":{"type":"array","items":{"type":"object","properties":{"slug":{"type":"string"},"label":{"type":"string"},"sortOrder":{"type":"number"},"color":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["slug","label","sortOrder","color"]}},"markers":{"type":"array","items":{"type":"object","properties":{"slug":{"type":"string"},"label":{"type":"string"},"sortOrder":{"type":"number"},"description":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["slug","label","sortOrder","description"]}}},"required":["cardTypes","rarities","domains","superTypes","finishes","artVariants","cardSizes","deckFormats","deckZones","conditions","graders","languages","markers"]},"keywords":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"object","properties":{"color":{"type":"string"},"darkText":{"type":"boolean"},"costKeyword":{"type":"boolean"},"translations":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"string"}}},"required":["color","darkText","costKeyword"]}},"distributionChannels":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"slug":{"type":"string"},"label":{"type":"string"},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"kind":{"enum":["event","product"],"type":"string"},"parentId":{"anyOf":[{"type":"string"},{"type":"null"}]},"childrenLabel":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["id","slug","label","description","kind","parentId","childrenLabel"]}},"customTags":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"slug":{"type":"string"},"label":{"type":"string"},"category":{"type":"string"},"categoryLabel":{"type":"string"},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"sortOrder":{"type":"number"}},"required":["id","slug","label","category","categoryLabel","description","sortOrder"]}},"championIdentifierTags":{"type":"array","items":{"type":"string"}},"tagCategories":{"type":"array","items":{"type":"object","properties":{"slug":{"type":"string"},"label":{"type":"string"},"sortOrder":{"type":"number"}},"required":["slug","label","sortOrder"]}},"tagCategoryMap":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"string"}}},"required":["enums","keywords","distributionChannels","customTags","championIdentifierTags","tagCategories","tagCategoryMap"]}}}}},"security":[]}},"/api/v1/landing-summary":{"get":{"operationId":"landingSummaryContract.get","tags":["Catalog"],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"cardCount":{"type":"number"},"printingCount":{"type":"number"},"copyCount":{"type":"number"},"thumbnailIds":{"type":"array","items":{"type":"string"}}},"required":["cardCount","printingCount","copyCount","thumbnailIds"]}}}}},"security":[]}},"/api/v1/lists":{"get":{"operationId":"listsContract.list","tags":["Lists"],"parameters":[{"name":"intent","in":"query","schema":{"enum":["wish","trade","organize"],"type":"string"},"allowEmptyValue":true,"allowReserved":true}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"intent":{"enum":["wish","trade","organize"],"type":"string"},"kind":{"enum":["card","printing","copy"],"type":"string"},"entryCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"isPublic":{"type":"boolean"},"shareToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"tradeDefaults":{"type":"object","properties":{"pricePref":{"anyOf":[{"enum":["cm_lowest","tcg_lowest","ct_zero","absolute"],"type":"string"},{"type":"null"}]},"priceAbsoluteCents":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},{"type":"null"}]},"tradeType":{"anyOf":[{"enum":["cards","money","both"],"type":"string"},{"type":"null"}]}},"required":["pricePref","priceAbsoluteCents","tradeType"]},"currency":{"anyOf":[{"enum":["EUR","USD"],"type":"string"},{"type":"null"}]},"hasRule":{"type":"boolean"}},"required":["id","name","intent","kind","entryCount","isPublic","shareToken","createdAt","updatedAt","tradeDefaults","currency","hasRule"]}}},"required":["items"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"post":{"operationId":"listsContract.create","tags":["Lists"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string","minLength":1,"maxLength":200},"intent":{"enum":["wish","trade","organize"],"type":"string"},"kind":{"enum":["card","printing","copy"],"type":"string"},"tradeDefaults":{"type":"object","properties":{"pricePref":{"anyOf":[{"enum":["cm_lowest","tcg_lowest","ct_zero","absolute"],"type":"string"},{"type":"null"}]},"priceAbsoluteCents":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":10000000,"exclusiveMinimum":0},{"type":"null"}]},"tradeType":{"anyOf":[{"enum":["cards","money","both"],"type":"string"},{"type":"null"}]}},"required":["pricePref","priceAbsoluteCents","tradeType"]},"currency":{"anyOf":[{"enum":["EUR","USD"],"type":"string"},{"type":"null"}]},"rules":{"type":"array","maxItems":10,"items":{"anyOf":[{"type":"object","properties":{"kind":{"const":"wish"},"filter":{"type":"object","properties":{"search":{"type":"string","default":""},"searchScope":{"type":"array","items":{"enum":["name","cardText","keywords","tags","artist","flavorText","type","id"],"type":"string"},"default":["name","cardText","keywords","tags","artist","flavorText","type","id"]},"sets":{"type":"array","items":{"type":"string"},"default":[]},"languages":{"type":"array","items":{"type":"string"},"default":[]},"rarities":{"type":"array","items":{"type":"string"},"default":[]},"types":{"type":"array","items":{"type":"string"},"default":[]},"superTypes":{"type":"array","items":{"type":"string"},"default":[]},"domains":{"type":"array","items":{"type":"string"},"default":[]},"energy":{"type":"object","properties":{"min":{"anyOf":[{"type":"number"},{"type":"null"}]},"max":{"anyOf":[{"type":"number"},{"type":"null"}]}},"required":["min","max"],"default":{"min":null,"max":null}},"might":{"type":"object","properties":{"min":{"anyOf":[{"type":"number"},{"type":"null"}]},"max":{"anyOf":[{"type":"number"},{"type":"null"}]}},"required":["min","max"],"default":{"min":null,"max":null}},"power":{"type":"object","properties":{"min":{"anyOf":[{"type":"number"},{"type":"null"}]},"max":{"anyOf":[{"type":"number"},{"type":"null"}]}},"required":["min","max"],"default":{"min":null,"max":null}},"price":{"type":"object","properties":{"min":{"anyOf":[{"type":"number"},{"type":"null"}]},"max":{"anyOf":[{"type":"number"},{"type":"null"}]}},"required":["min","max"],"default":{"min":null,"max":null}},"artVariants":{"type":"array","items":{"type":"string"},"default":[]},"finishes":{"type":"array","items":{"type":"string"},"default":[]},"cardSizes":{"type":"array","items":{"type":"string"},"default":[]},"isSigned":{"anyOf":[{"type":"boolean"},{"type":"null"}],"default":null},"presence":{"type":"object","propertyNames":{"enum":["markers","superTypes","customTags","distributionChannels","keywords","tags"],"type":"string"},"additionalProperties":{"enum":["any","none"],"type":"string"},"default":{}},"markerSlugs":{"type":"array","items":{"type":"string"},"default":[]},"distributionChannelSlugs":{"type":"array","items":{"type":"string"},"default":[]},"customTagSlugs":{"type":"array","items":{"type":"string"},"default":[]},"keywords":{"type":"array","items":{"type":"string"},"default":[]},"tags":{"type":"array","items":{"type":"string"},"default":[]},"isBanned":{"anyOf":[{"type":"boolean"},{"type":"null"}],"default":null},"hasErrata":{"anyOf":[{"type":"boolean"},{"type":"null"}],"default":null},"setsExclude":{"type":"array","items":{"type":"string"},"default":[]},"languagesExclude":{"type":"array","items":{"type":"string"},"default":[]},"raritiesExclude":{"type":"array","items":{"type":"string"},"default":[]},"typesExclude":{"type":"array","items":{"type":"string"},"default":[]},"superTypesExclude":{"type":"array","items":{"type":"string"},"default":[]},"domainsExclude":{"type":"array","items":{"type":"string"},"default":[]},"artVariantsExclude":{"type":"array","items":{"type":"string"},"default":[]},"finishesExclude":{"type":"array","items":{"type":"string"},"default":[]},"markerSlugsExclude":{"type":"array","items":{"type":"string"},"default":[]},"distributionChannelSlugsExclude":{"type":"array","items":{"type":"string"},"default":[]},"customTagSlugsExclude":{"type":"array","items":{"type":"string"},"default":[]},"keywordsExclude":{"type":"array","items":{"type":"string"},"default":[]},"tagsExclude":{"type":"array","items":{"type":"string"},"default":[]},"isStandard":{"anyOf":[{"type":"boolean"},{"type":"null"}],"default":null}}},"quantity":{"anyOf":[{"type":"object","properties":{"mode":{"const":"fixed"},"n":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["mode","n"]},{"type":"object","properties":{"mode":{"const":"playset"},"multiplier":{"type":"integer","minimum":1,"maximum":9007199254740991}},"required":["mode","multiplier"]}]},"excludeIds":{"type":"array","items":{"type":"string"}},"netOwned":{"type":"boolean"},"countSpecialVersions":{"type":"boolean"}},"required":["kind","filter","quantity","excludeIds"]},{"type":"object","properties":{"kind":{"const":"trade"},"filter":{"type":"object","properties":{"search":{"type":"string","default":""},"searchScope":{"type":"array","items":{"enum":["name","cardText","keywords","tags","artist","flavorText","type","id"],"type":"string"},"default":["name","cardText","keywords","tags","artist","flavorText","type","id"]},"sets":{"type":"array","items":{"type":"string"},"default":[]},"languages":{"type":"array","items":{"type":"string"},"default":[]},"rarities":{"type":"array","items":{"type":"string"},"default":[]},"types":{"type":"array","items":{"type":"string"},"default":[]},"superTypes":{"type":"array","items":{"type":"string"},"default":[]},"domains":{"type":"array","items":{"type":"string"},"default":[]},"energy":{"type":"object","properties":{"min":{"anyOf":[{"type":"number"},{"type":"null"}]},"max":{"anyOf":[{"type":"number"},{"type":"null"}]}},"required":["min","max"],"default":{"min":null,"max":null}},"might":{"type":"object","properties":{"min":{"anyOf":[{"type":"number"},{"type":"null"}]},"max":{"anyOf":[{"type":"number"},{"type":"null"}]}},"required":["min","max"],"default":{"min":null,"max":null}},"power":{"type":"object","properties":{"min":{"anyOf":[{"type":"number"},{"type":"null"}]},"max":{"anyOf":[{"type":"number"},{"type":"null"}]}},"required":["min","max"],"default":{"min":null,"max":null}},"price":{"type":"object","properties":{"min":{"anyOf":[{"type":"number"},{"type":"null"}]},"max":{"anyOf":[{"type":"number"},{"type":"null"}]}},"required":["min","max"],"default":{"min":null,"max":null}},"artVariants":{"type":"array","items":{"type":"string"},"default":[]},"finishes":{"type":"array","items":{"type":"string"},"default":[]},"cardSizes":{"type":"array","items":{"type":"string"},"default":[]},"isSigned":{"anyOf":[{"type":"boolean"},{"type":"null"}],"default":null},"presence":{"type":"object","propertyNames":{"enum":["markers","superTypes","customTags","distributionChannels","keywords","tags"],"type":"string"},"additionalProperties":{"enum":["any","none"],"type":"string"},"default":{}},"markerSlugs":{"type":"array","items":{"type":"string"},"default":[]},"distributionChannelSlugs":{"type":"array","items":{"type":"string"},"default":[]},"customTagSlugs":{"type":"array","items":{"type":"string"},"default":[]},"keywords":{"type":"array","items":{"type":"string"},"default":[]},"tags":{"type":"array","items":{"type":"string"},"default":[]},"isBanned":{"anyOf":[{"type":"boolean"},{"type":"null"}],"default":null},"hasErrata":{"anyOf":[{"type":"boolean"},{"type":"null"}],"default":null},"setsExclude":{"type":"array","items":{"type":"string"},"default":[]},"languagesExclude":{"type":"array","items":{"type":"string"},"default":[]},"raritiesExclude":{"type":"array","items":{"type":"string"},"default":[]},"typesExclude":{"type":"array","items":{"type":"string"},"default":[]},"superTypesExclude":{"type":"array","items":{"type":"string"},"default":[]},"domainsExclude":{"type":"array","items":{"type":"string"},"default":[]},"artVariantsExclude":{"type":"array","items":{"type":"string"},"default":[]},"finishesExclude":{"type":"array","items":{"type":"string"},"default":[]},"markerSlugsExclude":{"type":"array","items":{"type":"string"},"default":[]},"distributionChannelSlugsExclude":{"type":"array","items":{"type":"string"},"default":[]},"customTagSlugsExclude":{"type":"array","items":{"type":"string"},"default":[]},"keywordsExclude":{"type":"array","items":{"type":"string"},"default":[]},"tagsExclude":{"type":"array","items":{"type":"string"},"default":[]},"isStandard":{"anyOf":[{"type":"boolean"},{"type":"null"}],"default":null}}},"collectionIds":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}]},"keepPerCard":{"anyOf":[{"type":"object","properties":{"mode":{"const":"fixed"},"n":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["mode","n"]},{"type":"object","properties":{"mode":{"const":"playset"},"multiplier":{"type":"integer","minimum":1,"maximum":9007199254740991}},"required":["mode","multiplier"]}]},"keepPer":{"enum":["card","printing"],"type":"string"},"excludeCopyIds":{"type":"array","items":{"type":"string"}}},"required":["kind","filter","collectionIds","keepPerCard","excludeCopyIds"]}]}},"ruleCombine":{"anyOf":[{"enum":["sum","max","protect","count-sum","count-max"],"type":"string"},{"type":"null"}]}},"required":["name","intent","kind"]}}}},"responses":{"201":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"intent":{"enum":["wish","trade","organize"],"type":"string"},"kind":{"enum":["card","printing","copy"],"type":"string"},"entryCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"isPublic":{"type":"boolean"},"shareToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"tradeDefaults":{"type":"object","properties":{"pricePref":{"anyOf":[{"enum":["cm_lowest","tcg_lowest","ct_zero","absolute"],"type":"string"},{"type":"null"}]},"priceAbsoluteCents":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},{"type":"null"}]},"tradeType":{"anyOf":[{"enum":["cards","money","both"],"type":"string"},{"type":"null"}]}},"required":["pricePref","priceAbsoluteCents","tradeType"]},"currency":{"anyOf":[{"enum":["EUR","USD"],"type":"string"},{"type":"null"}]},"hasRule":{"type":"boolean"}},"required":["id","name","intent","kind","entryCount","isPublic","shareToken","createdAt","updatedAt","tradeDefaults","currency","hasRule"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/lists/{id}":{"get":{"operationId":"listsContract.get","tags":["Lists"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"list":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"intent":{"enum":["wish","trade","organize"],"type":"string"},"kind":{"enum":["card","printing","copy"],"type":"string"},"entryCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"isPublic":{"type":"boolean"},"shareToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"tradeDefaults":{"type":"object","properties":{"pricePref":{"anyOf":[{"enum":["cm_lowest","tcg_lowest","ct_zero","absolute"],"type":"string"},{"type":"null"}]},"priceAbsoluteCents":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},{"type":"null"}]},"tradeType":{"anyOf":[{"enum":["cards","money","both"],"type":"string"},{"type":"null"}]}},"required":["pricePref","priceAbsoluteCents","tradeType"]},"currency":{"anyOf":[{"enum":["EUR","USD"],"type":"string"},{"type":"null"}]},"hasRule":{"type":"boolean"},"rules":{"type":"array","maxItems":10,"items":{"anyOf":[{"type":"object","properties":{"kind":{"const":"wish"},"filter":{"type":"object","properties":{"search":{"type":"string","default":""},"searchScope":{"type":"array","items":{"enum":["name","cardText","keywords","tags","artist","flavorText","type","id"],"type":"string"},"default":["name","cardText","keywords","tags","artist","flavorText","type","id"]},"sets":{"type":"array","items":{"type":"string"},"default":[]},"languages":{"type":"array","items":{"type":"string"},"default":[]},"rarities":{"type":"array","items":{"type":"string"},"default":[]},"types":{"type":"array","items":{"type":"string"},"default":[]},"superTypes":{"type":"array","items":{"type":"string"},"default":[]},"domains":{"type":"array","items":{"type":"string"},"default":[]},"energy":{"type":"object","properties":{"min":{"anyOf":[{"type":"number"},{"type":"null"}]},"max":{"anyOf":[{"type":"number"},{"type":"null"}]}},"required":["min","max"],"default":{"min":null,"max":null}},"might":{"type":"object","properties":{"min":{"anyOf":[{"type":"number"},{"type":"null"}]},"max":{"anyOf":[{"type":"number"},{"type":"null"}]}},"required":["min","max"],"default":{"min":null,"max":null}},"power":{"type":"object","properties":{"min":{"anyOf":[{"type":"number"},{"type":"null"}]},"max":{"anyOf":[{"type":"number"},{"type":"null"}]}},"required":["min","max"],"default":{"min":null,"max":null}},"price":{"type":"object","properties":{"min":{"anyOf":[{"type":"number"},{"type":"null"}]},"max":{"anyOf":[{"type":"number"},{"type":"null"}]}},"required":["min","max"],"default":{"min":null,"max":null}},"artVariants":{"type":"array","items":{"type":"string"},"default":[]},"finishes":{"type":"array","items":{"type":"string"},"default":[]},"cardSizes":{"type":"array","items":{"type":"string"},"default":[]},"isSigned":{"anyOf":[{"type":"boolean"},{"type":"null"}],"default":null},"presence":{"type":"object","propertyNames":{"enum":["markers","superTypes","customTags","distributionChannels","keywords","tags"],"type":"string"},"additionalProperties":{"enum":["any","none"],"type":"string"},"default":{}},"markerSlugs":{"type":"array","items":{"type":"string"},"default":[]},"distributionChannelSlugs":{"type":"array","items":{"type":"string"},"default":[]},"customTagSlugs":{"type":"array","items":{"type":"string"},"default":[]},"keywords":{"type":"array","items":{"type":"string"},"default":[]},"tags":{"type":"array","items":{"type":"string"},"default":[]},"isBanned":{"anyOf":[{"type":"boolean"},{"type":"null"}],"default":null},"hasErrata":{"anyOf":[{"type":"boolean"},{"type":"null"}],"default":null},"setsExclude":{"type":"array","items":{"type":"string"},"default":[]},"languagesExclude":{"type":"array","items":{"type":"string"},"default":[]},"raritiesExclude":{"type":"array","items":{"type":"string"},"default":[]},"typesExclude":{"type":"array","items":{"type":"string"},"default":[]},"superTypesExclude":{"type":"array","items":{"type":"string"},"default":[]},"domainsExclude":{"type":"array","items":{"type":"string"},"default":[]},"artVariantsExclude":{"type":"array","items":{"type":"string"},"default":[]},"finishesExclude":{"type":"array","items":{"type":"string"},"default":[]},"markerSlugsExclude":{"type":"array","items":{"type":"string"},"default":[]},"distributionChannelSlugsExclude":{"type":"array","items":{"type":"string"},"default":[]},"customTagSlugsExclude":{"type":"array","items":{"type":"string"},"default":[]},"keywordsExclude":{"type":"array","items":{"type":"string"},"default":[]},"tagsExclude":{"type":"array","items":{"type":"string"},"default":[]},"isStandard":{"anyOf":[{"type":"boolean"},{"type":"null"}],"default":null}}},"quantity":{"anyOf":[{"type":"object","properties":{"mode":{"const":"fixed"},"n":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["mode","n"]},{"type":"object","properties":{"mode":{"const":"playset"},"multiplier":{"type":"integer","minimum":1,"maximum":9007199254740991}},"required":["mode","multiplier"]}]},"excludeIds":{"type":"array","items":{"type":"string"}},"netOwned":{"type":"boolean"},"countSpecialVersions":{"type":"boolean"}},"required":["kind","filter","quantity","excludeIds"]},{"type":"object","properties":{"kind":{"const":"trade"},"filter":{"type":"object","properties":{"search":{"type":"string","default":""},"searchScope":{"type":"array","items":{"enum":["name","cardText","keywords","tags","artist","flavorText","type","id"],"type":"string"},"default":["name","cardText","keywords","tags","artist","flavorText","type","id"]},"sets":{"type":"array","items":{"type":"string"},"default":[]},"languages":{"type":"array","items":{"type":"string"},"default":[]},"rarities":{"type":"array","items":{"type":"string"},"default":[]},"types":{"type":"array","items":{"type":"string"},"default":[]},"superTypes":{"type":"array","items":{"type":"string"},"default":[]},"domains":{"type":"array","items":{"type":"string"},"default":[]},"energy":{"type":"object","properties":{"min":{"anyOf":[{"type":"number"},{"type":"null"}]},"max":{"anyOf":[{"type":"number"},{"type":"null"}]}},"required":["min","max"],"default":{"min":null,"max":null}},"might":{"type":"object","properties":{"min":{"anyOf":[{"type":"number"},{"type":"null"}]},"max":{"anyOf":[{"type":"number"},{"type":"null"}]}},"required":["min","max"],"default":{"min":null,"max":null}},"power":{"type":"object","properties":{"min":{"anyOf":[{"type":"number"},{"type":"null"}]},"max":{"anyOf":[{"type":"number"},{"type":"null"}]}},"required":["min","max"],"default":{"min":null,"max":null}},"price":{"type":"object","properties":{"min":{"anyOf":[{"type":"number"},{"type":"null"}]},"max":{"anyOf":[{"type":"number"},{"type":"null"}]}},"required":["min","max"],"default":{"min":null,"max":null}},"artVariants":{"type":"array","items":{"type":"string"},"default":[]},"finishes":{"type":"array","items":{"type":"string"},"default":[]},"cardSizes":{"type":"array","items":{"type":"string"},"default":[]},"isSigned":{"anyOf":[{"type":"boolean"},{"type":"null"}],"default":null},"presence":{"type":"object","propertyNames":{"enum":["markers","superTypes","customTags","distributionChannels","keywords","tags"],"type":"string"},"additionalProperties":{"enum":["any","none"],"type":"string"},"default":{}},"markerSlugs":{"type":"array","items":{"type":"string"},"default":[]},"distributionChannelSlugs":{"type":"array","items":{"type":"string"},"default":[]},"customTagSlugs":{"type":"array","items":{"type":"string"},"default":[]},"keywords":{"type":"array","items":{"type":"string"},"default":[]},"tags":{"type":"array","items":{"type":"string"},"default":[]},"isBanned":{"anyOf":[{"type":"boolean"},{"type":"null"}],"default":null},"hasErrata":{"anyOf":[{"type":"boolean"},{"type":"null"}],"default":null},"setsExclude":{"type":"array","items":{"type":"string"},"default":[]},"languagesExclude":{"type":"array","items":{"type":"string"},"default":[]},"raritiesExclude":{"type":"array","items":{"type":"string"},"default":[]},"typesExclude":{"type":"array","items":{"type":"string"},"default":[]},"superTypesExclude":{"type":"array","items":{"type":"string"},"default":[]},"domainsExclude":{"type":"array","items":{"type":"string"},"default":[]},"artVariantsExclude":{"type":"array","items":{"type":"string"},"default":[]},"finishesExclude":{"type":"array","items":{"type":"string"},"default":[]},"markerSlugsExclude":{"type":"array","items":{"type":"string"},"default":[]},"distributionChannelSlugsExclude":{"type":"array","items":{"type":"string"},"default":[]},"customTagSlugsExclude":{"type":"array","items":{"type":"string"},"default":[]},"keywordsExclude":{"type":"array","items":{"type":"string"},"default":[]},"tagsExclude":{"type":"array","items":{"type":"string"},"default":[]},"isStandard":{"anyOf":[{"type":"boolean"},{"type":"null"}],"default":null}}},"collectionIds":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}]},"keepPerCard":{"anyOf":[{"type":"object","properties":{"mode":{"const":"fixed"},"n":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["mode","n"]},{"type":"object","properties":{"mode":{"const":"playset"},"multiplier":{"type":"integer","minimum":1,"maximum":9007199254740991}},"required":["mode","multiplier"]}]},"keepPer":{"enum":["card","printing"],"type":"string"},"excludeCopyIds":{"type":"array","items":{"type":"string"}}},"required":["kind","filter","collectionIds","keepPerCard","excludeCopyIds"]}]}},"ruleCombine":{"anyOf":[{"enum":["sum","max","protect","count-sum","count-max"],"type":"string"},{"type":"null"}]}},"required":["id","name","intent","kind","entryCount","isPublic","shareToken","createdAt","updatedAt","tradeDefaults","currency","hasRule","rules","ruleCombine"]},"entries":{"type":"array","items":{"anyOf":[{"type":"object","properties":{"id":{"anyOf":[{"type":"string"},{"type":"null"}]},"listId":{"type":"string"},"quantity":{"type":"number"},"tradeOverride":{"type":"object","properties":{"pricePref":{"anyOf":[{"enum":["cm_lowest","tcg_lowest","ct_zero","absolute"],"type":"string"},{"type":"null"}]},"priceAbsoluteCents":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},{"type":"null"}]},"tradeType":{"anyOf":[{"enum":["cards","money","both"],"type":"string"},{"type":"null"}]}},"required":["pricePref","priceAbsoluteCents","tradeType"]},"source":{"enum":["manual","rule","both"],"type":"string"},"ruleQuantity":{"type":"number"},"cardName":{"type":"string"},"kind":{"const":"card"},"cardId":{"type":"string"}},"required":["id","listId","quantity","tradeOverride","source","ruleQuantity","cardName","kind","cardId"]},{"type":"object","properties":{"id":{"anyOf":[{"type":"string"},{"type":"null"}]},"listId":{"type":"string"},"quantity":{"type":"number"},"tradeOverride":{"type":"object","properties":{"pricePref":{"anyOf":[{"enum":["cm_lowest","tcg_lowest","ct_zero","absolute"],"type":"string"},{"type":"null"}]},"priceAbsoluteCents":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},{"type":"null"}]},"tradeType":{"anyOf":[{"enum":["cards","money","both"],"type":"string"},{"type":"null"}]}},"required":["pricePref","priceAbsoluteCents","tradeType"]},"source":{"enum":["manual","rule","both"],"type":"string"},"ruleQuantity":{"type":"number"},"cardName":{"type":"string"},"kind":{"const":"printing"},"printingId":{"type":"string"},"setId":{"type":"string"},"rarity":{"type":"string"},"finish":{"type":"string"},"shortCode":{"type":"string"},"language":{"type":"string"},"imageId":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["id","listId","quantity","tradeOverride","source","ruleQuantity","cardName","kind","printingId","setId","rarity","finish","shortCode","language","imageId"]},{"type":"object","properties":{"id":{"anyOf":[{"type":"string"},{"type":"null"}]},"listId":{"type":"string"},"quantity":{"type":"number"},"tradeOverride":{"type":"object","properties":{"pricePref":{"anyOf":[{"enum":["cm_lowest","tcg_lowest","ct_zero","absolute"],"type":"string"},{"type":"null"}]},"priceAbsoluteCents":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},{"type":"null"}]},"tradeType":{"anyOf":[{"enum":["cards","money","both"],"type":"string"},{"type":"null"}]}},"required":["pricePref","priceAbsoluteCents","tradeType"]},"source":{"enum":["manual","rule","both"],"type":"string"},"ruleQuantity":{"type":"number"},"cardName":{"type":"string"},"kind":{"const":"copy"},"copyId":{"type":"string"},"printingId":{"type":"string"},"setId":{"type":"string"},"rarity":{"type":"string"},"finish":{"type":"string"},"shortCode":{"type":"string"},"language":{"type":"string"},"imageId":{"anyOf":[{"type":"string"},{"type":"null"}]},"reserved":{"type":"boolean"},"onLoan":{"type":"boolean"}},"required":["id","listId","quantity","tradeOverride","source","ruleQuantity","cardName","kind","copyId","printingId","setId","rarity","finish","shortCode","language","imageId","reserved","onLoan"]}]}}},"required":["list","entries"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"List not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"patch":{"operationId":"listsContract.update","tags":["Lists"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"requestBody":{"required":false,"content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string","minLength":1,"maxLength":200},"tradeDefaults":{"type":"object","properties":{"pricePref":{"anyOf":[{"enum":["cm_lowest","tcg_lowest","ct_zero","absolute"],"type":"string"},{"type":"null"}]},"priceAbsoluteCents":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":10000000,"exclusiveMinimum":0},{"type":"null"}]},"tradeType":{"anyOf":[{"enum":["cards","money","both"],"type":"string"},{"type":"null"}]}},"required":["pricePref","priceAbsoluteCents","tradeType"]},"currency":{"anyOf":[{"enum":["EUR","USD"],"type":"string"},{"type":"null"}]},"rules":{"type":"array","maxItems":10,"items":{"anyOf":[{"type":"object","properties":{"kind":{"const":"wish"},"filter":{"type":"object","properties":{"search":{"type":"string","default":""},"searchScope":{"type":"array","items":{"enum":["name","cardText","keywords","tags","artist","flavorText","type","id"],"type":"string"},"default":["name","cardText","keywords","tags","artist","flavorText","type","id"]},"sets":{"type":"array","items":{"type":"string"},"default":[]},"languages":{"type":"array","items":{"type":"string"},"default":[]},"rarities":{"type":"array","items":{"type":"string"},"default":[]},"types":{"type":"array","items":{"type":"string"},"default":[]},"superTypes":{"type":"array","items":{"type":"string"},"default":[]},"domains":{"type":"array","items":{"type":"string"},"default":[]},"energy":{"type":"object","properties":{"min":{"anyOf":[{"type":"number"},{"type":"null"}]},"max":{"anyOf":[{"type":"number"},{"type":"null"}]}},"required":["min","max"],"default":{"min":null,"max":null}},"might":{"type":"object","properties":{"min":{"anyOf":[{"type":"number"},{"type":"null"}]},"max":{"anyOf":[{"type":"number"},{"type":"null"}]}},"required":["min","max"],"default":{"min":null,"max":null}},"power":{"type":"object","properties":{"min":{"anyOf":[{"type":"number"},{"type":"null"}]},"max":{"anyOf":[{"type":"number"},{"type":"null"}]}},"required":["min","max"],"default":{"min":null,"max":null}},"price":{"type":"object","properties":{"min":{"anyOf":[{"type":"number"},{"type":"null"}]},"max":{"anyOf":[{"type":"number"},{"type":"null"}]}},"required":["min","max"],"default":{"min":null,"max":null}},"artVariants":{"type":"array","items":{"type":"string"},"default":[]},"finishes":{"type":"array","items":{"type":"string"},"default":[]},"cardSizes":{"type":"array","items":{"type":"string"},"default":[]},"isSigned":{"anyOf":[{"type":"boolean"},{"type":"null"}],"default":null},"presence":{"type":"object","propertyNames":{"enum":["markers","superTypes","customTags","distributionChannels","keywords","tags"],"type":"string"},"additionalProperties":{"enum":["any","none"],"type":"string"},"default":{}},"markerSlugs":{"type":"array","items":{"type":"string"},"default":[]},"distributionChannelSlugs":{"type":"array","items":{"type":"string"},"default":[]},"customTagSlugs":{"type":"array","items":{"type":"string"},"default":[]},"keywords":{"type":"array","items":{"type":"string"},"default":[]},"tags":{"type":"array","items":{"type":"string"},"default":[]},"isBanned":{"anyOf":[{"type":"boolean"},{"type":"null"}],"default":null},"hasErrata":{"anyOf":[{"type":"boolean"},{"type":"null"}],"default":null},"setsExclude":{"type":"array","items":{"type":"string"},"default":[]},"languagesExclude":{"type":"array","items":{"type":"string"},"default":[]},"raritiesExclude":{"type":"array","items":{"type":"string"},"default":[]},"typesExclude":{"type":"array","items":{"type":"string"},"default":[]},"superTypesExclude":{"type":"array","items":{"type":"string"},"default":[]},"domainsExclude":{"type":"array","items":{"type":"string"},"default":[]},"artVariantsExclude":{"type":"array","items":{"type":"string"},"default":[]},"finishesExclude":{"type":"array","items":{"type":"string"},"default":[]},"markerSlugsExclude":{"type":"array","items":{"type":"string"},"default":[]},"distributionChannelSlugsExclude":{"type":"array","items":{"type":"string"},"default":[]},"customTagSlugsExclude":{"type":"array","items":{"type":"string"},"default":[]},"keywordsExclude":{"type":"array","items":{"type":"string"},"default":[]},"tagsExclude":{"type":"array","items":{"type":"string"},"default":[]},"isStandard":{"anyOf":[{"type":"boolean"},{"type":"null"}],"default":null}}},"quantity":{"anyOf":[{"type":"object","properties":{"mode":{"const":"fixed"},"n":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["mode","n"]},{"type":"object","properties":{"mode":{"const":"playset"},"multiplier":{"type":"integer","minimum":1,"maximum":9007199254740991}},"required":["mode","multiplier"]}]},"excludeIds":{"type":"array","items":{"type":"string"}},"netOwned":{"type":"boolean"},"countSpecialVersions":{"type":"boolean"}},"required":["kind","filter","quantity","excludeIds"]},{"type":"object","properties":{"kind":{"const":"trade"},"filter":{"type":"object","properties":{"search":{"type":"string","default":""},"searchScope":{"type":"array","items":{"enum":["name","cardText","keywords","tags","artist","flavorText","type","id"],"type":"string"},"default":["name","cardText","keywords","tags","artist","flavorText","type","id"]},"sets":{"type":"array","items":{"type":"string"},"default":[]},"languages":{"type":"array","items":{"type":"string"},"default":[]},"rarities":{"type":"array","items":{"type":"string"},"default":[]},"types":{"type":"array","items":{"type":"string"},"default":[]},"superTypes":{"type":"array","items":{"type":"string"},"default":[]},"domains":{"type":"array","items":{"type":"string"},"default":[]},"energy":{"type":"object","properties":{"min":{"anyOf":[{"type":"number"},{"type":"null"}]},"max":{"anyOf":[{"type":"number"},{"type":"null"}]}},"required":["min","max"],"default":{"min":null,"max":null}},"might":{"type":"object","properties":{"min":{"anyOf":[{"type":"number"},{"type":"null"}]},"max":{"anyOf":[{"type":"number"},{"type":"null"}]}},"required":["min","max"],"default":{"min":null,"max":null}},"power":{"type":"object","properties":{"min":{"anyOf":[{"type":"number"},{"type":"null"}]},"max":{"anyOf":[{"type":"number"},{"type":"null"}]}},"required":["min","max"],"default":{"min":null,"max":null}},"price":{"type":"object","properties":{"min":{"anyOf":[{"type":"number"},{"type":"null"}]},"max":{"anyOf":[{"type":"number"},{"type":"null"}]}},"required":["min","max"],"default":{"min":null,"max":null}},"artVariants":{"type":"array","items":{"type":"string"},"default":[]},"finishes":{"type":"array","items":{"type":"string"},"default":[]},"cardSizes":{"type":"array","items":{"type":"string"},"default":[]},"isSigned":{"anyOf":[{"type":"boolean"},{"type":"null"}],"default":null},"presence":{"type":"object","propertyNames":{"enum":["markers","superTypes","customTags","distributionChannels","keywords","tags"],"type":"string"},"additionalProperties":{"enum":["any","none"],"type":"string"},"default":{}},"markerSlugs":{"type":"array","items":{"type":"string"},"default":[]},"distributionChannelSlugs":{"type":"array","items":{"type":"string"},"default":[]},"customTagSlugs":{"type":"array","items":{"type":"string"},"default":[]},"keywords":{"type":"array","items":{"type":"string"},"default":[]},"tags":{"type":"array","items":{"type":"string"},"default":[]},"isBanned":{"anyOf":[{"type":"boolean"},{"type":"null"}],"default":null},"hasErrata":{"anyOf":[{"type":"boolean"},{"type":"null"}],"default":null},"setsExclude":{"type":"array","items":{"type":"string"},"default":[]},"languagesExclude":{"type":"array","items":{"type":"string"},"default":[]},"raritiesExclude":{"type":"array","items":{"type":"string"},"default":[]},"typesExclude":{"type":"array","items":{"type":"string"},"default":[]},"superTypesExclude":{"type":"array","items":{"type":"string"},"default":[]},"domainsExclude":{"type":"array","items":{"type":"string"},"default":[]},"artVariantsExclude":{"type":"array","items":{"type":"string"},"default":[]},"finishesExclude":{"type":"array","items":{"type":"string"},"default":[]},"markerSlugsExclude":{"type":"array","items":{"type":"string"},"default":[]},"distributionChannelSlugsExclude":{"type":"array","items":{"type":"string"},"default":[]},"customTagSlugsExclude":{"type":"array","items":{"type":"string"},"default":[]},"keywordsExclude":{"type":"array","items":{"type":"string"},"default":[]},"tagsExclude":{"type":"array","items":{"type":"string"},"default":[]},"isStandard":{"anyOf":[{"type":"boolean"},{"type":"null"}],"default":null}}},"collectionIds":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}]},"keepPerCard":{"anyOf":[{"type":"object","properties":{"mode":{"const":"fixed"},"n":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["mode","n"]},{"type":"object","properties":{"mode":{"const":"playset"},"multiplier":{"type":"integer","minimum":1,"maximum":9007199254740991}},"required":["mode","multiplier"]}]},"keepPer":{"enum":["card","printing"],"type":"string"},"excludeCopyIds":{"type":"array","items":{"type":"string"}}},"required":["kind","filter","collectionIds","keepPerCard","excludeCopyIds"]}]}},"ruleCombine":{"anyOf":[{"enum":["sum","max","protect","count-sum","count-max"],"type":"string"},{"type":"null"}]}}}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"intent":{"enum":["wish","trade","organize"],"type":"string"},"kind":{"enum":["card","printing","copy"],"type":"string"},"entryCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"isPublic":{"type":"boolean"},"shareToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"tradeDefaults":{"type":"object","properties":{"pricePref":{"anyOf":[{"enum":["cm_lowest","tcg_lowest","ct_zero","absolute"],"type":"string"},{"type":"null"}]},"priceAbsoluteCents":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},{"type":"null"}]},"tradeType":{"anyOf":[{"enum":["cards","money","both"],"type":"string"},{"type":"null"}]}},"required":["pricePref","priceAbsoluteCents","tradeType"]},"currency":{"anyOf":[{"enum":["EUR","USD"],"type":"string"},{"type":"null"}]},"hasRule":{"type":"boolean"}},"required":["id","name","intent","kind","entryCount","isPublic","shareToken","createdAt","updatedAt","tradeDefaults","currency","hasRule"]}}}},"400":{"description":"400","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"BAD_REQUEST"},"status":{"const":400},"message":{"type":"string","default":"No fields to update"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"List not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"delete":{"operationId":"listsContract.remove","tags":["Lists"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"204":{"description":"OK","content":{"application/json":{"schema":{"anyOf":[{},{"not":{}}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"List not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/lists/{id}/entries":{"post":{"operationId":"listsContract.createEntry","tags":["Lists"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"requestBody":{"required":false,"content":{"application/json":{"schema":{"type":"object","properties":{"cardId":{"type":"string","format":"uuid"},"printingId":{"type":"string","format":"uuid"},"copyId":{"type":"string","format":"uuid"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0,"default":1},"tradeOverride":{"type":"object","properties":{"pricePref":{"anyOf":[{"enum":["cm_lowest","tcg_lowest","ct_zero","absolute"],"type":"string"},{"type":"null"}]},"priceAbsoluteCents":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":10000000,"exclusiveMinimum":0},{"type":"null"}]},"tradeType":{"anyOf":[{"enum":["cards","money","both"],"type":"string"},{"type":"null"}]}},"required":["pricePref","priceAbsoluteCents","tradeType"],"default":{"pricePref":null,"priceAbsoluteCents":null,"tradeType":null}}}}}}},"responses":{"201":{"description":"OK","content":{"application/json":{"schema":{"anyOf":[{"type":"object","properties":{"id":{"type":"string"},"listId":{"type":"string"},"quantity":{"type":"number"},"tradeOverride":{"type":"object","properties":{"pricePref":{"anyOf":[{"enum":["cm_lowest","tcg_lowest","ct_zero","absolute"],"type":"string"},{"type":"null"}]},"priceAbsoluteCents":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},{"type":"null"}]},"tradeType":{"anyOf":[{"enum":["cards","money","both"],"type":"string"},{"type":"null"}]}},"required":["pricePref","priceAbsoluteCents","tradeType"]},"kind":{"const":"card"},"cardId":{"type":"string"}},"required":["id","listId","quantity","tradeOverride","kind","cardId"]},{"type":"object","properties":{"id":{"type":"string"},"listId":{"type":"string"},"quantity":{"type":"number"},"tradeOverride":{"type":"object","properties":{"pricePref":{"anyOf":[{"enum":["cm_lowest","tcg_lowest","ct_zero","absolute"],"type":"string"},{"type":"null"}]},"priceAbsoluteCents":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},{"type":"null"}]},"tradeType":{"anyOf":[{"enum":["cards","money","both"],"type":"string"},{"type":"null"}]}},"required":["pricePref","priceAbsoluteCents","tradeType"]},"kind":{"const":"printing"},"printingId":{"type":"string"}},"required":["id","listId","quantity","tradeOverride","kind","printingId"]},{"type":"object","properties":{"id":{"type":"string"},"listId":{"type":"string"},"quantity":{"type":"number"},"tradeOverride":{"type":"object","properties":{"pricePref":{"anyOf":[{"enum":["cm_lowest","tcg_lowest","ct_zero","absolute"],"type":"string"},{"type":"null"}]},"priceAbsoluteCents":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},{"type":"null"}]},"tradeType":{"anyOf":[{"enum":["cards","money","both"],"type":"string"},{"type":"null"}]}},"required":["pricePref","priceAbsoluteCents","tradeType"]},"kind":{"const":"copy"},"copyId":{"type":"string"}},"required":["id","listId","quantity","tradeOverride","kind","copyId"]}]}}}},"400":{"description":"400","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"BAD_REQUEST"},"status":{"const":400},"message":{"type":"string","default":"Entry target does not match list kind"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"List or copy not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"409":{"description":"409","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"CONFLICT"},"status":{"const":409},"message":{"type":"string","default":"That item is already in the list"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/lists/{id}/entries/bulk":{"post":{"operationId":"listsContract.bulkCreateEntries","tags":["Lists"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"entries":{"type":"array","minItems":1,"maxItems":500,"items":{"type":"object","properties":{"cardId":{"type":"string","format":"uuid"},"printingId":{"type":"string","format":"uuid"},"copyId":{"type":"string","format":"uuid"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0,"default":1},"tradeOverride":{"type":"object","properties":{"pricePref":{"anyOf":[{"enum":["cm_lowest","tcg_lowest","ct_zero","absolute"],"type":"string"},{"type":"null"}]},"priceAbsoluteCents":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":10000000,"exclusiveMinimum":0},{"type":"null"}]},"tradeType":{"anyOf":[{"enum":["cards","money","both"],"type":"string"},{"type":"null"}]}},"required":["pricePref","priceAbsoluteCents","tradeType"],"default":{"pricePref":null,"priceAbsoluteCents":null,"tradeType":null}}}}}},"required":["entries"]}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"added":{"type":"integer","minimum":0,"maximum":9007199254740991},"updated":{"type":"integer","minimum":0,"maximum":9007199254740991},"skipped":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["added","updated","skipped"]}}}},"400":{"description":"400","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"BAD_REQUEST"},"status":{"const":400},"message":{"type":"string","default":"Entry target does not match list kind"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"List not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/lists/{id}/entries/from-copies":{"post":{"operationId":"listsContract.bulkAddFromCopies","tags":["Lists"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"copyIds":{"type":"array","minItems":1,"maxItems":500,"items":{"type":"string","format":"uuid"}}},"required":["copyIds"]}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"added":{"type":"integer","minimum":0,"maximum":9007199254740991},"updated":{"type":"integer","minimum":0,"maximum":9007199254740991},"skipped":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["added","updated","skipped"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"List not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/lists/{id}/entries/move":{"post":{"operationId":"listsContract.moveEntries","tags":["Lists"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"toListId":{"type":"string","format":"uuid"},"entryIds":{"type":"array","minItems":1,"maxItems":500,"items":{"type":"string","format":"uuid"}}},"required":["toListId","entryIds"]}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"moved":{"type":"integer","minimum":0,"maximum":9007199254740991},"merged":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["moved","merged"]}}}},"400":{"description":"400","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"BAD_REQUEST"},"status":{"const":400},"message":{"type":"string","default":"Source and destination lists are incompatible"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"List not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/lists/{id}/entries/{itemId}":{"patch":{"operationId":"listsContract.updateEntry","tags":["Lists"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"itemId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"requestBody":{"required":false,"content":{"application/json":{"schema":{"type":"object","properties":{"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"tradeOverride":{"type":"object","properties":{"pricePref":{"anyOf":[{"enum":["cm_lowest","tcg_lowest","ct_zero","absolute"],"type":"string"},{"type":"null"}]},"priceAbsoluteCents":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":10000000,"exclusiveMinimum":0},{"type":"null"}]},"tradeType":{"anyOf":[{"enum":["cards","money","both"],"type":"string"},{"type":"null"}]}},"required":["pricePref","priceAbsoluteCents","tradeType"]}}}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"anyOf":[{"type":"object","properties":{"id":{"type":"string"},"listId":{"type":"string"},"quantity":{"type":"number"},"tradeOverride":{"type":"object","properties":{"pricePref":{"anyOf":[{"enum":["cm_lowest","tcg_lowest","ct_zero","absolute"],"type":"string"},{"type":"null"}]},"priceAbsoluteCents":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},{"type":"null"}]},"tradeType":{"anyOf":[{"enum":["cards","money","both"],"type":"string"},{"type":"null"}]}},"required":["pricePref","priceAbsoluteCents","tradeType"]},"kind":{"const":"card"},"cardId":{"type":"string"}},"required":["id","listId","quantity","tradeOverride","kind","cardId"]},{"type":"object","properties":{"id":{"type":"string"},"listId":{"type":"string"},"quantity":{"type":"number"},"tradeOverride":{"type":"object","properties":{"pricePref":{"anyOf":[{"enum":["cm_lowest","tcg_lowest","ct_zero","absolute"],"type":"string"},{"type":"null"}]},"priceAbsoluteCents":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},{"type":"null"}]},"tradeType":{"anyOf":[{"enum":["cards","money","both"],"type":"string"},{"type":"null"}]}},"required":["pricePref","priceAbsoluteCents","tradeType"]},"kind":{"const":"printing"},"printingId":{"type":"string"}},"required":["id","listId","quantity","tradeOverride","kind","printingId"]},{"type":"object","properties":{"id":{"type":"string"},"listId":{"type":"string"},"quantity":{"type":"number"},"tradeOverride":{"type":"object","properties":{"pricePref":{"anyOf":[{"enum":["cm_lowest","tcg_lowest","ct_zero","absolute"],"type":"string"},{"type":"null"}]},"priceAbsoluteCents":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},{"type":"null"}]},"tradeType":{"anyOf":[{"enum":["cards","money","both"],"type":"string"},{"type":"null"}]}},"required":["pricePref","priceAbsoluteCents","tradeType"]},"kind":{"const":"copy"},"copyId":{"type":"string"}},"required":["id","listId","quantity","tradeOverride","kind","copyId"]}]}}}},"400":{"description":"400","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"BAD_REQUEST"},"status":{"const":400},"message":{"type":"string","default":"No fields to update"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Entry not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"delete":{"operationId":"listsContract.removeEntry","tags":["Lists"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"itemId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"204":{"description":"OK","content":{"application/json":{"schema":{"anyOf":[{},{"not":{}}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Entry not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/lists/{id}/entries/bulk-delete":{"post":{"operationId":"listsContract.bulkDeleteEntries","tags":["Lists"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"entryIds":{"type":"array","minItems":1,"maxItems":500,"items":{"type":"string","format":"uuid"}}},"required":["entryIds"]}}}},"responses":{"204":{"description":"OK","content":{"application/json":{"schema":{"anyOf":[{},{"not":{}}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"List not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/lists/{id}/share":{"get":{"operationId":"listsContract.getShare","tags":["Lists"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"shareToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"isPublic":{"type":"boolean"}},"required":["shareToken","isPublic"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"List not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"post":{"operationId":"listsContract.share","tags":["Lists"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"shareToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"isPublic":{"type":"boolean"}},"required":["shareToken","isPublic"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"List not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"delete":{"operationId":"listsContract.unshare","tags":["Lists"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"204":{"description":"OK","content":{"application/json":{"schema":{"anyOf":[{},{"not":{}}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"List not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/lists/{id}/share/rotate":{"post":{"operationId":"listsContract.rotateShare","tags":["Lists"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"shareToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"isPublic":{"type":"boolean"}},"required":["shareToken","isPublic"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"List not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/lists/reorder":{"post":{"operationId":"listsContract.reorder","tags":["Lists"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"intent":{"enum":["wish","trade","organize"],"type":"string"},"orderedIds":{"type":"array","minItems":1,"maxItems":500,"items":{"type":"string","format":"uuid"}}},"required":["intent","orderedIds"]}}}},"responses":{"204":{"description":"OK","content":{"application/json":{"schema":{"anyOf":[{},{"not":{}}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/lists/{id}/group-shares":{"get":{"operationId":"listsContract.groupShares","tags":["Lists"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"groupId":{"type":"string"},"groupSlug":{"type":"string"},"groupName":{"type":"string"}},"required":["groupId","groupSlug","groupName"]}}},"required":["items"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"List not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/loans":{"post":{"operationId":"loansContract.create","tags":["Loans"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"printingId":{"type":"string","format":"uuid"},"quantity":{"type":"integer","minimum":1,"maximum":9007199254740991},"borrowerUserId":{"type":"string","minLength":1},"borrowerName":{"type":"string","minLength":1,"maxLength":100},"contextCollectionId":{"type":"string","format":"uuid"}},"required":["printingId","quantity"]}}}},"responses":{"201":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"role":{"enum":["lender","borrower"],"type":"string"},"counterparty":{"anyOf":[{"type":"object","properties":{"userId":{"type":"string"},"name":{"anyOf":[{"type":"string"},{"type":"null"}]},"image":{"anyOf":[{"type":"string"},{"type":"null"}]},"gravatarHash":{"type":"string"}},"required":["userId","name","image","gravatarHash"]},{"type":"null"}]},"counterpartyName":{"anyOf":[{"type":"string"},{"type":"null"}]},"printingId":{"type":"string"},"cardId":{"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"returnedQuantity":{"type":"integer","minimum":0,"maximum":9007199254740991},"status":{"enum":["active","returned","written_off"],"type":"string"},"acknowledgedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"rejectedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"closedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"actionNeeded":{"anyOf":[{"enum":["acknowledge"],"type":"string"},{"type":"null"}]}},"required":["id","role","counterparty","counterpartyName","printingId","cardId","quantity","returnedQuantity","status","acknowledgedAt","rejectedAt","createdAt","updatedAt","closedAt","actionNeeded"]}}}},"400":{"description":"400","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"BAD_REQUEST"},"status":{"const":400},"message":{"type":"string","default":"Invalid loan"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Printing or borrower not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"409":{"description":"409","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"CONFLICT"},"status":{"const":409},"message":{"type":"string","default":"Not enough available copies"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"get":{"operationId":"loansContract.list","tags":["Loans"],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"role":{"enum":["lender","borrower"],"type":"string"},"counterparty":{"anyOf":[{"type":"object","properties":{"userId":{"type":"string"},"name":{"anyOf":[{"type":"string"},{"type":"null"}]},"image":{"anyOf":[{"type":"string"},{"type":"null"}]},"gravatarHash":{"type":"string"}},"required":["userId","name","image","gravatarHash"]},{"type":"null"}]},"counterpartyName":{"anyOf":[{"type":"string"},{"type":"null"}]},"printingId":{"type":"string"},"cardId":{"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"returnedQuantity":{"type":"integer","minimum":0,"maximum":9007199254740991},"status":{"enum":["active","returned","written_off"],"type":"string"},"acknowledgedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"rejectedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"closedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"actionNeeded":{"anyOf":[{"enum":["acknowledge"],"type":"string"},{"type":"null"}]}},"required":["id","role","counterparty","counterpartyName","printingId","cardId","quantity","returnedQuantity","status","acknowledgedAt","rejectedAt","createdAt","updatedAt","closedAt","actionNeeded"]}}},"required":["items"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/loans/action-counts":{"get":{"operationId":"loansContract.actionCounts","tags":["Loans"],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["total"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/loans/borrower-options":{"get":{"operationId":"loansContract.borrowerOptions","tags":["Loans"],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"members":{"type":"array","items":{"type":"object","properties":{"userId":{"type":"string"},"name":{"anyOf":[{"type":"string"},{"type":"null"}]},"image":{"anyOf":[{"type":"string"},{"type":"null"}]},"gravatarHash":{"type":"string"}},"required":["userId","name","image","gravatarHash"]}},"recentNames":{"type":"array","items":{"type":"string"}}},"required":["members","recentNames"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/loans/{id}/acknowledge":{"post":{"operationId":"loansContract.acknowledge","tags":["Loans"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"role":{"enum":["lender","borrower"],"type":"string"},"counterparty":{"anyOf":[{"type":"object","properties":{"userId":{"type":"string"},"name":{"anyOf":[{"type":"string"},{"type":"null"}]},"image":{"anyOf":[{"type":"string"},{"type":"null"}]},"gravatarHash":{"type":"string"}},"required":["userId","name","image","gravatarHash"]},{"type":"null"}]},"counterpartyName":{"anyOf":[{"type":"string"},{"type":"null"}]},"printingId":{"type":"string"},"cardId":{"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"returnedQuantity":{"type":"integer","minimum":0,"maximum":9007199254740991},"status":{"enum":["active","returned","written_off"],"type":"string"},"acknowledgedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"rejectedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"closedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"actionNeeded":{"anyOf":[{"enum":["acknowledge"],"type":"string"},{"type":"null"}]}},"required":["id","role","counterparty","counterpartyName","printingId","cardId","quantity","returnedQuantity","status","acknowledgedAt","rejectedAt","createdAt","updatedAt","closedAt","actionNeeded"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Loan not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"409":{"description":"409","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"CONFLICT"},"status":{"const":409},"message":{"type":"string","default":"Loan is not active"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/loans/{id}/reject":{"post":{"operationId":"loansContract.reject","tags":["Loans"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"role":{"enum":["lender","borrower"],"type":"string"},"counterparty":{"anyOf":[{"type":"object","properties":{"userId":{"type":"string"},"name":{"anyOf":[{"type":"string"},{"type":"null"}]},"image":{"anyOf":[{"type":"string"},{"type":"null"}]},"gravatarHash":{"type":"string"}},"required":["userId","name","image","gravatarHash"]},{"type":"null"}]},"counterpartyName":{"anyOf":[{"type":"string"},{"type":"null"}]},"printingId":{"type":"string"},"cardId":{"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"returnedQuantity":{"type":"integer","minimum":0,"maximum":9007199254740991},"status":{"enum":["active","returned","written_off"],"type":"string"},"acknowledgedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"rejectedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"closedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"actionNeeded":{"anyOf":[{"enum":["acknowledge"],"type":"string"},{"type":"null"}]}},"required":["id","role","counterparty","counterpartyName","printingId","cardId","quantity","returnedQuantity","status","acknowledgedAt","rejectedAt","createdAt","updatedAt","closedAt","actionNeeded"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Loan not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"409":{"description":"409","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"CONFLICT"},"status":{"const":409},"message":{"type":"string","default":"Loan is not active"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/loans/{id}/return":{"post":{"operationId":"loansContract.returnCopies","tags":["Loans"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"quantity":{"type":"integer","minimum":1,"maximum":9007199254740991}},"required":["quantity"]}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"role":{"enum":["lender","borrower"],"type":"string"},"counterparty":{"anyOf":[{"type":"object","properties":{"userId":{"type":"string"},"name":{"anyOf":[{"type":"string"},{"type":"null"}]},"image":{"anyOf":[{"type":"string"},{"type":"null"}]},"gravatarHash":{"type":"string"}},"required":["userId","name","image","gravatarHash"]},{"type":"null"}]},"counterpartyName":{"anyOf":[{"type":"string"},{"type":"null"}]},"printingId":{"type":"string"},"cardId":{"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"returnedQuantity":{"type":"integer","minimum":0,"maximum":9007199254740991},"status":{"enum":["active","returned","written_off"],"type":"string"},"acknowledgedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"rejectedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"closedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"actionNeeded":{"anyOf":[{"enum":["acknowledge"],"type":"string"},{"type":"null"}]}},"required":["id","role","counterparty","counterpartyName","printingId","cardId","quantity","returnedQuantity","status","acknowledgedAt","rejectedAt","createdAt","updatedAt","closedAt","actionNeeded"]}}}},"400":{"description":"400","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"BAD_REQUEST"},"status":{"const":400},"message":{"type":"string","default":"More copies than are outstanding"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Loan not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"409":{"description":"409","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"CONFLICT"},"status":{"const":409},"message":{"type":"string","default":"Loan is not active"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/loans/{id}/write-off":{"post":{"operationId":"loansContract.writeOff","tags":["Loans"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"removeCopies":{"type":"boolean"}},"required":["removeCopies"]}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"role":{"enum":["lender","borrower"],"type":"string"},"counterparty":{"anyOf":[{"type":"object","properties":{"userId":{"type":"string"},"name":{"anyOf":[{"type":"string"},{"type":"null"}]},"image":{"anyOf":[{"type":"string"},{"type":"null"}]},"gravatarHash":{"type":"string"}},"required":["userId","name","image","gravatarHash"]},{"type":"null"}]},"counterpartyName":{"anyOf":[{"type":"string"},{"type":"null"}]},"printingId":{"type":"string"},"cardId":{"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"returnedQuantity":{"type":"integer","minimum":0,"maximum":9007199254740991},"status":{"enum":["active","returned","written_off"],"type":"string"},"acknowledgedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"rejectedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"closedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"actionNeeded":{"anyOf":[{"enum":["acknowledge"],"type":"string"},{"type":"null"}]}},"required":["id","role","counterparty","counterpartyName","printingId","cardId","quantity","returnedQuantity","status","acknowledgedAt","rejectedAt","createdAt","updatedAt","closedAt","actionNeeded"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Loan not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"409":{"description":"409","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"CONFLICT"},"status":{"const":409},"message":{"type":"string","default":"Loan is not active"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/loans/{id}":{"delete":{"operationId":"loansContract.remove","tags":["Loans"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"deleted":{"type":"boolean"}},"required":["deleted"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Loan not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/organizations":{"get":{"operationId":"organizationsContract.list","tags":["Organizations"],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"slug":{"type":"string"},"name":{"type":"string"},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"ownerUserId":{"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"ownerName":{"anyOf":[{"type":"string"},{"type":"null"}]},"memberCount":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["id","slug","name","description","ownerUserId","createdAt","updatedAt","ownerName","memberCount"]}}},"required":["items"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/organizations/{id}":{"get":{"operationId":"organizationsContract.get","tags":["Organizations"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","minLength":1}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"slug":{"type":"string"},"name":{"type":"string"},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"ownerUserId":{"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"members":{"type":"array","items":{"type":"object","properties":{"userId":{"type":"string"},"name":{"anyOf":[{"type":"string"},{"type":"null"}]},"role":{"enum":["owner","manager","judge"],"type":"string"},"joinedAt":{"type":"string"}},"required":["userId","name","role","joinedAt"]}},"viewerRole":{"anyOf":[{"enum":["owner","manager","judge"],"type":"string"},{"type":"null"}]}},"required":["id","slug","name","description","ownerUserId","createdAt","updatedAt","members","viewerRole"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Organization not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/organizations/{id}/members":{"post":{"operationId":"organizationsContract.addMember","tags":["Organizations"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","minLength":1}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"email":{"type":"string","maxLength":254,"format":"email"},"role":{"enum":["owner","manager","judge"],"type":"string"}},"required":["email","role"]}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"slug":{"type":"string"},"name":{"type":"string"},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"ownerUserId":{"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"members":{"type":"array","items":{"type":"object","properties":{"userId":{"type":"string"},"name":{"anyOf":[{"type":"string"},{"type":"null"}]},"role":{"enum":["owner","manager","judge"],"type":"string"},"joinedAt":{"type":"string"}},"required":["userId","name","role","joinedAt"]}},"viewerRole":{"anyOf":[{"enum":["owner","manager","judge"],"type":"string"},{"type":"null"}]}},"required":["id","slug","name","description","ownerUserId","createdAt","updatedAt","members","viewerRole"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Organization or user not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"409":{"description":"409","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"CONFLICT"},"status":{"const":409},"message":{"type":"string","default":"User is already a member"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/organizations/{id}/members/{userId}":{"patch":{"operationId":"organizationsContract.updateMemberRole","tags":["Organizations"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","minLength":1}},{"name":"userId","in":"path","required":true,"schema":{"type":"string","minLength":1}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"role":{"enum":["owner","manager","judge"],"type":"string"}},"required":["role"]}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"slug":{"type":"string"},"name":{"type":"string"},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"ownerUserId":{"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"members":{"type":"array","items":{"type":"object","properties":{"userId":{"type":"string"},"name":{"anyOf":[{"type":"string"},{"type":"null"}]},"role":{"enum":["owner","manager","judge"],"type":"string"},"joinedAt":{"type":"string"}},"required":["userId","name","role","joinedAt"]}},"viewerRole":{"anyOf":[{"enum":["owner","manager","judge"],"type":"string"},{"type":"null"}]}},"required":["id","slug","name","description","ownerUserId","createdAt","updatedAt","members","viewerRole"]}}}},"400":{"description":"400","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"BAD_REQUEST"},"status":{"const":400},"message":{"type":"string","default":"An organization must keep at least one owner"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Organization or member not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"delete":{"operationId":"organizationsContract.removeMember","tags":["Organizations"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","minLength":1}},{"name":"userId","in":"path","required":true,"schema":{"type":"string","minLength":1}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"slug":{"type":"string"},"name":{"type":"string"},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"ownerUserId":{"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"members":{"type":"array","items":{"type":"object","properties":{"userId":{"type":"string"},"name":{"anyOf":[{"type":"string"},{"type":"null"}]},"role":{"enum":["owner","manager","judge"],"type":"string"},"joinedAt":{"type":"string"}},"required":["userId","name","role","joinedAt"]}},"viewerRole":{"anyOf":[{"enum":["owner","manager","judge"],"type":"string"},{"type":"null"}]}},"required":["id","slug","name","description","ownerUserId","createdAt","updatedAt","members","viewerRole"]}}}},"400":{"description":"400","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"BAD_REQUEST"},"status":{"const":400},"message":{"type":"string","default":"An organization must keep at least one owner"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Organization or member not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/preferences":{"get":{"operationId":"preferencesContract.get","tags":["Preferences"],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"showImages":{"type":"boolean"},"fancyFan":{"type":"boolean"},"foilEffect":{"type":"boolean"},"cardTilt":{"type":"boolean"},"theme":{"enum":["light","dark","auto"],"type":"string"},"palette":{"enum":["default","minimal"],"type":"string"},"marketplaceOrder":{"type":"array","items":{"enum":["tcgplayer","cardmarket","cardtrader"],"type":"string"}},"languages":{"type":"array","items":{"type":"string"}},"completionScope":{"type":"object","properties":{"sets":{"type":"array","items":{"type":"string"}},"languages":{"type":"array","items":{"type":"string"}},"domains":{"type":"array","items":{"type":"string"}},"types":{"type":"array","items":{"type":"string"}},"rarities":{"type":"array","items":{"type":"string"}},"finishes":{"type":"array","items":{"type":"string"}},"artVariants":{"type":"array","items":{"type":"string"}},"promos":{"enum":["only","exclude"],"type":"string"},"signed":{"type":"boolean"},"banned":{"type":"boolean"},"errata":{"type":"boolean"}}},"defaultCardView":{"enum":["cards","printings"],"type":"string"},"defaultCurrency":{"enum":["EUR","USD"],"type":"string"},"topLevelFilters":{"type":"array","items":{"type":"string"}},"emailNotifications":{"type":"object","properties":{"tradeMatches":{"type":"boolean"},"tradeRequests":{"type":"boolean"},"tradeStatus":{"type":"boolean"},"tradeRequestCadence":{"enum":["instant","5min","15min","30min","60min"],"type":"string"}}}}}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"patch":{"operationId":"preferencesContract.update","tags":["Preferences"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"showImages":{"anyOf":[{"type":"boolean"},{"type":"null"}]},"fancyFan":{"anyOf":[{"type":"boolean"},{"type":"null"}]},"foilEffect":{"anyOf":[{"type":"boolean"},{"type":"null"}]},"cardTilt":{"anyOf":[{"type":"boolean"},{"type":"null"}]},"theme":{"anyOf":[{"enum":["light","dark","auto"],"type":"string"},{"type":"null"}]},"palette":{"anyOf":[{"enum":["default","minimal"],"type":"string"},{"type":"null"}]},"marketplaceOrder":{"anyOf":[{"type":"array","maxItems":3,"items":{"enum":["tcgplayer","cardmarket","cardtrader"],"type":"string"}},{"type":"null"}]},"languages":{"anyOf":[{"type":"array","items":{"type":"string","minLength":1,"maxLength":2}},{"type":"null"}]},"completionScope":{"anyOf":[{"type":"object","properties":{"sets":{"type":"array","items":{"type":"string"}},"languages":{"type":"array","items":{"type":"string"}},"domains":{"type":"array","items":{"type":"string"}},"types":{"type":"array","items":{"type":"string"}},"rarities":{"type":"array","items":{"type":"string"}},"finishes":{"type":"array","items":{"type":"string"}},"artVariants":{"type":"array","items":{"type":"string"}},"promos":{"enum":["only","exclude"],"type":"string"},"signed":{"type":"boolean"},"banned":{"type":"boolean"},"errata":{"type":"boolean"}}},{"type":"null"}]},"defaultCardView":{"anyOf":[{"enum":["cards","printings"],"type":"string"},{"type":"null"}]},"defaultCurrency":{"anyOf":[{"enum":["EUR","USD"],"type":"string"},{"type":"null"}]},"hiddenFilterSections":{"anyOf":[{"type":"array","maxItems":40,"items":{"type":"string","minLength":1,"maxLength":40}},{"type":"null"}]},"topLevelFilters":{"anyOf":[{"type":"array","maxItems":40,"items":{"type":"string","minLength":1,"maxLength":40}},{"type":"null"}]},"compactFilterView":{"anyOf":[{"type":"boolean"},{"type":"null"}]},"emailNotifications":{"anyOf":[{"type":"object","properties":{"tradeMatches":{"type":"boolean"},"tradeRequests":{"type":"boolean"},"tradeStatus":{"type":"boolean"},"tradeRequestCadence":{"enum":["instant","5min","15min","30min","60min"],"type":"string"}}},{"type":"null"}]}}}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"showImages":{"type":"boolean"},"fancyFan":{"type":"boolean"},"foilEffect":{"type":"boolean"},"cardTilt":{"type":"boolean"},"theme":{"enum":["light","dark","auto"],"type":"string"},"palette":{"enum":["default","minimal"],"type":"string"},"marketplaceOrder":{"type":"array","items":{"enum":["tcgplayer","cardmarket","cardtrader"],"type":"string"}},"languages":{"type":"array","items":{"type":"string"}},"completionScope":{"type":"object","properties":{"sets":{"type":"array","items":{"type":"string"}},"languages":{"type":"array","items":{"type":"string"}},"domains":{"type":"array","items":{"type":"string"}},"types":{"type":"array","items":{"type":"string"}},"rarities":{"type":"array","items":{"type":"string"}},"finishes":{"type":"array","items":{"type":"string"}},"artVariants":{"type":"array","items":{"type":"string"}},"promos":{"enum":["only","exclude"],"type":"string"},"signed":{"type":"boolean"},"banned":{"type":"boolean"},"errata":{"type":"boolean"}}},"defaultCardView":{"enum":["cards","printings"],"type":"string"},"defaultCurrency":{"enum":["EUR","USD"],"type":"string"},"topLevelFilters":{"type":"array","items":{"type":"string"}},"emailNotifications":{"type":"object","properties":{"tradeMatches":{"type":"boolean"},"tradeRequests":{"type":"boolean"},"tradeStatus":{"type":"boolean"},"tradeRequestCadence":{"enum":["instant","5min","15min","30min","60min"],"type":"string"}}}}}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/prices":{"get":{"operationId":"pricesContract.prices","tags":["Prices"],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"prices":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"object","properties":{"tcgplayer":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},"cardmarket":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},"cardtrader":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991}}}},"currencies":{"type":"object","properties":{"tcgplayer":{"enum":["EUR","USD"],"type":"string"},"cardmarket":{"enum":["EUR","USD"],"type":"string"},"cardtrader":{"enum":["EUR","USD"],"type":"string"}},"required":["tcgplayer","cardmarket","cardtrader"]}},"required":["prices","currencies"]}}}}},"security":[]}},"/api/v1/prices/marketplace-info":{"get":{"operationId":"pricesContract.marketplaceInfo","tags":["Prices"],"parameters":[{"name":"printings","in":"query","required":true,"schema":{"type":"string"},"allowEmptyValue":true,"allowReserved":true}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"infos":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"object","properties":{"tcgplayer":{"type":"object","properties":{"available":{"type":"boolean"},"productId":{"anyOf":[{"type":"number"},{"type":"null"}]}},"required":["available","productId"]},"cardmarket":{"type":"object","properties":{"available":{"type":"boolean"},"productId":{"anyOf":[{"type":"number"},{"type":"null"}]}},"required":["available","productId"]},"cardtrader":{"type":"object","properties":{"available":{"type":"boolean"},"productId":{"anyOf":[{"type":"number"},{"type":"null"}]}},"required":["available","productId"]}},"required":["tcgplayer","cardmarket","cardtrader"]}}},"required":["infos"]}}}}},"security":[]}},"/api/v1/prices/{printingId}/history":{"get":{"operationId":"pricesContract.history","tags":["Prices"],"parameters":[{"name":"printingId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"range","in":"query","schema":{"enum":["7d","30d","90d","all"],"type":"string","default":"30d"},"allowEmptyValue":true,"allowReserved":true}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"tcgplayer":{"type":"object","properties":{"available":{"type":"boolean"},"productId":{"anyOf":[{"type":"number"},{"type":"null"}]},"currency":{"enum":["EUR","USD"],"type":"string"},"snapshots":{"type":"array","items":{"type":"object","properties":{"date":{"type":"string"},"market":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},"low":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]}},"required":["date","market","low"]}}},"required":["available","productId","currency","snapshots"]},"cardmarket":{"type":"object","properties":{"available":{"type":"boolean"},"productId":{"anyOf":[{"type":"number"},{"type":"null"}]},"currency":{"enum":["EUR","USD"],"type":"string"},"snapshots":{"type":"array","items":{"type":"object","properties":{"date":{"type":"string"},"market":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},"low":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]}},"required":["date","market","low"]}}},"required":["available","productId","currency","snapshots"]},"cardtrader":{"type":"object","properties":{"available":{"type":"boolean"},"productId":{"anyOf":[{"type":"number"},{"type":"null"}]},"currency":{"enum":["EUR","USD"],"type":"string"},"snapshots":{"type":"array","items":{"type":"object","properties":{"date":{"type":"string"},"zeroLow":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"low":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]}},"required":["date","zeroLow","low"]}}},"required":["available","productId","currency","snapshots"]}},"required":["tcgplayer","cardmarket","cardtrader"]}}}}},"security":[]}},"/api/v1/products":{"get":{"operationId":"productsContract.list","tags":["Products"],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"products":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"slug":{"type":"string"},"name":{"type":"string"},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"set":{"anyOf":[{"type":"object","properties":{"id":{"type":"string"},"slug":{"type":"string"},"name":{"type":"string"}},"required":["id","slug","name"]},{"type":"null"}]},"printingCount":{"type":"number"},"cardTotal":{"type":"number"},"coverCards":{"type":"array","items":{"type":"object","properties":{"printingId":{"type":"string"},"imageId":{"type":"string"},"name":{"type":"string"}},"required":["printingId","imageId","name"]}},"updatedAt":{"type":"string","format":"date-time"}},"required":["id","slug","name","description","set","printingCount","cardTotal","coverCards","updatedAt"]}}},"required":["products"]}}}}},"security":[]}},"/api/v1/products/{slug}":{"get":{"operationId":"productsContract.get","tags":["Products"],"parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"product":{"type":"object","properties":{"id":{"type":"string"},"slug":{"type":"string"},"name":{"type":"string"},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"set":{"anyOf":[{"type":"object","properties":{"id":{"type":"string"},"slug":{"type":"string"},"name":{"type":"string"}},"required":["id","slug","name"]},{"type":"null"}]},"printingCount":{"type":"number"},"cardTotal":{"type":"number"},"coverCards":{"type":"array","items":{"type":"object","properties":{"printingId":{"type":"string"},"imageId":{"type":"string"},"name":{"type":"string"}},"required":["printingId","imageId","name"]}},"updatedAt":{"type":"string","format":"date-time"}},"required":["id","slug","name","description","set","printingCount","cardTotal","coverCards","updatedAt"]},"contents":{"type":"array","items":{"type":"object","properties":{"printingId":{"type":"string"},"quantity":{"type":"number"}},"required":["printingId","quantity"]}}},"required":["product","contents"]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Product not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}},"security":[]}},"/api/v1/promos":{"get":{"operationId":"promosContract.list","tags":["Promos"],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"channels":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"slug":{"type":"string"},"label":{"type":"string"},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"kind":{"enum":["event","product"],"type":"string"},"parentId":{"anyOf":[{"type":"string"},{"type":"null"}]},"childrenLabel":{"anyOf":[{"type":"string"},{"type":"null"}]},"cardCount":{"type":"number"},"printingCount":{"type":"number"}},"required":["id","slug","label","description","kind","parentId","childrenLabel","cardCount","printingCount"]}},"cards":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"object","properties":{"id":{"type":"string"},"slug":{"type":"string"},"name":{"type":"string"},"type":{"type":"string"},"types":{"type":"array","minItems":1,"items":{"type":"string"}},"superTypes":{"type":"array","items":{"type":"string"}},"domains":{"type":"array","items":{"type":"string"}},"might":{"anyOf":[{"type":"number"},{"type":"null"}]},"energy":{"anyOf":[{"type":"number"},{"type":"null"}]},"power":{"anyOf":[{"type":"number"},{"type":"null"}]},"keywords":{"type":"array","items":{"type":"string"}},"tags":{"type":"array","items":{"type":"string"}},"mightBonus":{"anyOf":[{"type":"number"},{"type":"null"}]},"maxCopiesOverride":{"anyOf":[{"type":"number"},{"type":"null"}]},"errata":{"anyOf":[{"type":"object","properties":{"correctedRulesText":{"anyOf":[{"type":"string"},{"type":"null"}]},"correctedEffectText":{"anyOf":[{"type":"string"},{"type":"null"}]},"source":{"type":"string"},"sourceUrl":{"anyOf":[{"type":"string"},{"type":"null"}]},"effectiveDate":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["correctedRulesText","correctedEffectText","source","sourceUrl","effectiveDate"]},{"type":"null"}]},"bans":{"type":"array","items":{"type":"object","properties":{"formatId":{"type":"string"},"formatName":{"type":"string"},"bannedAt":{"type":"string"},"reason":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["formatId","formatName","bannedAt","reason"]}}},"required":["id","slug","name","type","types","superTypes","domains","might","energy","power","keywords","tags","mightBonus","maxCopiesOverride","errata","bans"]}},"printings":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"shortCode":{"type":"string"},"setId":{"type":"string"},"rarity":{"type":"string"},"artVariant":{"type":"string"},"isSigned":{"type":"boolean"},"markers":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"slug":{"type":"string"},"label":{"type":"string"},"description":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["id","slug","label","description"]}},"distributionChannels":{"type":"array","items":{"type":"object","properties":{"channel":{"type":"object","properties":{"id":{"type":"string"},"slug":{"type":"string"},"label":{"type":"string"},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"kind":{"enum":["event","product"],"type":"string"},"parentId":{"anyOf":[{"type":"string"},{"type":"null"}]},"childrenLabel":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["id","slug","label","description","kind","parentId","childrenLabel"]},"distributionNote":{"anyOf":[{"type":"string"},{"type":"null"}]},"ancestorLabels":{"type":"array","items":{"type":"string"}}},"required":["channel","distributionNote","ancestorLabels"]}},"finish":{"type":"string"},"size":{"type":"string"},"images":{"type":"array","items":{"type":"object","properties":{"face":{"enum":["front","back"],"type":"string"},"imageId":{"type":"string"}},"required":["face","imageId"]}},"artist":{"type":"string"},"publicCode":{"type":"string"},"printedRulesText":{"anyOf":[{"type":"string"},{"type":"null"}]},"printedEffectText":{"anyOf":[{"type":"string"},{"type":"null"}]},"flavorText":{"anyOf":[{"type":"string"},{"type":"null"}]},"printedName":{"anyOf":[{"type":"string"},{"type":"null"}]},"printedYear":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"language":{"type":"string"},"comment":{"anyOf":[{"type":"string"},{"type":"null"}]},"canonicalRank":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},"cardId":{"type":"string"}},"required":["id","shortCode","setId","rarity","artVariant","isSigned","markers","distributionChannels","finish","size","images","artist","publicCode","printedRulesText","printedEffectText","flavorText","printedName","printedYear","language","comment","canonicalRank","cardId"]}}},"required":["channels","cards","printings"]}}}}},"security":[]}},"/api/v1/collections/share/{token}":{"get":{"operationId":"publicCollectionsContract.share","tags":["Collections"],"parameters":[{"name":"token","in":"path","required":true,"schema":{"type":"string","minLength":1}},{"name":"cursor","in":"query","schema":{"type":"string","minLength":1},"allowEmptyValue":true,"allowReserved":true},{"name":"limit","in":"query","schema":{"type":"integer","minimum":1,"maximum":1000},"allowEmptyValue":true,"allowReserved":true}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"collection":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"copyCount":{"type":"number"},"totalValueCents":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"unpricedCopyCount":{"anyOf":[{"type":"number"},{"type":"null"}]},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","name","description","copyCount","totalValueCents","unpricedCopyCount","createdAt","updatedAt"]},"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"printingId":{"type":"string"},"condition":{"anyOf":[{"type":"string"},{"type":"null"}]},"grader":{"anyOf":[{"type":"string"},{"type":"null"}]},"grade":{"anyOf":[{"type":"number"},{"type":"null"}]},"notesPublic":{"anyOf":[{"type":"string"},{"type":"null"}]},"isAltered":{"type":"boolean"},"links":{"type":"array","items":{"type":"object","properties":{"url":{"type":"string","maxLength":500,"format":"uri"},"label":{"type":"string","minLength":1,"maxLength":100}},"required":["url"]}}},"required":["id","printingId","condition","grader","grade","notesPublic","isAltered","links"]}},"nextCursor":{"anyOf":[{"type":"string"},{"type":"null"}]},"owner":{"type":"object","properties":{"displayName":{"type":"string"},"gravatarHash":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["displayName","gravatarHash"]}},"required":["collection","items","nextCursor","owner"]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}},"security":[]}},"/api/v1/decks/share/{token}":{"get":{"operationId":"publicDecksContract.share","tags":["Decks"],"parameters":[{"name":"token","in":"path","required":true,"schema":{"type":"string","minLength":1}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"deck":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"format":{"type":"string"},"formatConfig":{"anyOf":[{"type":"object","properties":{"tagSlugs":{"type":"array","items":{"type":"string"}}}},{"type":"null"}]},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","name","description","format","formatConfig","createdAt","updatedAt"]},"cards":{"type":"array","items":{"type":"object","properties":{"cardId":{"type":"string"},"zone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow"],"type":"string"},"quantity":{"type":"number"},"preferredPrintingId":{"anyOf":[{"type":"string"},{"type":"null"}]},"cardName":{"type":"string"},"cardSlug":{"type":"string"},"cardType":{"type":"string"},"cardTypes":{"type":"array","minItems":1,"items":{"type":"string"}},"superTypes":{"type":"array","items":{"type":"string"}},"domains":{"type":"array","items":{"type":"string"}},"tags":{"type":"array","items":{"type":"string"}},"keywords":{"type":"array","items":{"type":"string"}},"maxCopiesOverride":{"anyOf":[{"type":"number"},{"type":"null"}]},"energy":{"anyOf":[{"type":"number"},{"type":"null"}]},"might":{"anyOf":[{"type":"number"},{"type":"null"}]},"power":{"anyOf":[{"type":"number"},{"type":"null"}]},"resolvedPrintingId":{"anyOf":[{"type":"string"},{"type":"null"}]},"shortCode":{"anyOf":[{"type":"string"},{"type":"null"}]},"imageId":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["cardId","zone","quantity","preferredPrintingId","cardName","cardSlug","cardType","cardTypes","superTypes","domains","tags","keywords","maxCopiesOverride","energy","might","power","resolvedPrintingId","shortCode","imageId"]}},"owner":{"type":"object","properties":{"displayName":{"type":"string"},"gravatarHash":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["displayName","gravatarHash"]},"plan":{"anyOf":[{"type":"object","properties":{"generalStrategy":{"type":"string"},"mulliganSplit":{"type":"boolean"},"mulliganGeneral":{"type":"string"},"mulliganFirst":{"type":"string"},"mulliganSecond":{"type":"string"},"battlefieldGame1CardId":{"anyOf":[{"type":"string"},{"type":"null"}]},"battlefieldFirstCardId":{"anyOf":[{"type":"string"},{"type":"null"}]},"battlefieldSecondCardId":{"anyOf":[{"type":"string"},{"type":"null"}]},"battlefieldCustom":{"type":"boolean"},"battlefieldNote":{"type":"string"},"matchups":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"opponentCardId":{"anyOf":[{"type":"string"},{"type":"null"}]},"opponentLabel":{"type":"string"},"notes":{"type":"string"},"swaps":{"type":"array","items":{"type":"object","properties":{"cardId":{"type":"string"},"direction":{"enum":["in","out"],"type":"string"},"quantity":{"type":"number"}},"required":["cardId","direction","quantity"]}}},"required":["id","opponentCardId","opponentLabel","notes","swaps"]}}},"required":["generalStrategy","mulliganSplit","mulliganGeneral","mulliganFirst","mulliganSecond","battlefieldGame1CardId","battlefieldFirstCardId","battlefieldSecondCardId","battlefieldCustom","battlefieldNote","matchups"]},{"type":"null"}]},"planCardMeta":{"type":"array","items":{"type":"object","properties":{"cardId":{"type":"string"},"cardName":{"type":"string"},"cardSlug":{"type":"string"},"cardTypes":{"type":"array","minItems":1,"items":{"type":"string"}},"imageId":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["cardId","cardName","cardSlug","cardTypes","imageId"]}},"customTagAssignments":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"array","items":{"type":"string"}}}},"required":["deck","cards","owner","plan","planCardMeta","customTagAssignments"]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}},"security":[]}},"/api/v1/decks/encode":{"post":{"operationId":"publicDecksContract.encode","tags":["Decks"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"format":{"enum":["piltover","text","tts"],"type":"string"},"cards":{"type":"array","items":{"type":"object","properties":{"cardId":{"type":"string"},"zone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow"],"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"preferredPrintingId":{"anyOf":[{"type":"string"},{"type":"null"}]},"cardName":{"type":"string"},"cardType":{"type":"string"},"superTypes":{"type":"array","items":{"type":"string"}},"domains":{"type":"array","items":{"type":"string"}}},"required":["cardId","zone","quantity","preferredPrintingId","cardName","cardType","superTypes","domains"]}}},"required":["cards"]}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"code":{"type":"string"},"warnings":{"type":"array","items":{"type":"string"}}},"required":["code","warnings"]}}}}},"security":[]}},"/api/v1/lists/share/{token}":{"get":{"operationId":"publicListsContract.share","tags":["Lists"],"parameters":[{"name":"token","in":"path","required":true,"schema":{"type":"string","minLength":1}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"list":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"intent":{"enum":["wish","trade","organize"],"type":"string"},"kind":{"enum":["card","printing","copy"],"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"tradeDefaults":{"type":"object","properties":{"pricePref":{"anyOf":[{"enum":["cm_lowest","tcg_lowest","ct_zero","absolute"],"type":"string"},{"type":"null"}]},"priceAbsoluteCents":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},{"type":"null"}]},"tradeType":{"anyOf":[{"enum":["cards","money","both"],"type":"string"},{"type":"null"}]}},"required":["pricePref","priceAbsoluteCents","tradeType"]},"currency":{"anyOf":[{"enum":["EUR","USD"],"type":"string"},{"type":"null"}]}},"required":["id","name","intent","kind","createdAt","updatedAt","tradeDefaults","currency"]},"entries":{"type":"array","items":{"anyOf":[{"type":"object","properties":{"id":{"anyOf":[{"type":"string"},{"type":"null"}]},"listId":{"type":"string"},"quantity":{"type":"number"},"tradeOverride":{"type":"object","properties":{"pricePref":{"anyOf":[{"enum":["cm_lowest","tcg_lowest","ct_zero","absolute"],"type":"string"},{"type":"null"}]},"priceAbsoluteCents":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},{"type":"null"}]},"tradeType":{"anyOf":[{"enum":["cards","money","both"],"type":"string"},{"type":"null"}]}},"required":["pricePref","priceAbsoluteCents","tradeType"]},"source":{"enum":["manual","rule","both"],"type":"string"},"ruleQuantity":{"type":"number"},"cardName":{"type":"string"},"kind":{"const":"card"},"cardId":{"type":"string"}},"required":["id","listId","quantity","tradeOverride","source","ruleQuantity","cardName","kind","cardId"]},{"type":"object","properties":{"id":{"anyOf":[{"type":"string"},{"type":"null"}]},"listId":{"type":"string"},"quantity":{"type":"number"},"tradeOverride":{"type":"object","properties":{"pricePref":{"anyOf":[{"enum":["cm_lowest","tcg_lowest","ct_zero","absolute"],"type":"string"},{"type":"null"}]},"priceAbsoluteCents":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},{"type":"null"}]},"tradeType":{"anyOf":[{"enum":["cards","money","both"],"type":"string"},{"type":"null"}]}},"required":["pricePref","priceAbsoluteCents","tradeType"]},"source":{"enum":["manual","rule","both"],"type":"string"},"ruleQuantity":{"type":"number"},"cardName":{"type":"string"},"kind":{"const":"printing"},"printingId":{"type":"string"},"setId":{"type":"string"},"rarity":{"type":"string"},"finish":{"type":"string"},"shortCode":{"type":"string"},"language":{"type":"string"},"imageId":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["id","listId","quantity","tradeOverride","source","ruleQuantity","cardName","kind","printingId","setId","rarity","finish","shortCode","language","imageId"]},{"type":"object","properties":{"id":{"anyOf":[{"type":"string"},{"type":"null"}]},"listId":{"type":"string"},"quantity":{"type":"number"},"tradeOverride":{"type":"object","properties":{"pricePref":{"anyOf":[{"enum":["cm_lowest","tcg_lowest","ct_zero","absolute"],"type":"string"},{"type":"null"}]},"priceAbsoluteCents":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},{"type":"null"}]},"tradeType":{"anyOf":[{"enum":["cards","money","both"],"type":"string"},{"type":"null"}]}},"required":["pricePref","priceAbsoluteCents","tradeType"]},"source":{"enum":["manual","rule","both"],"type":"string"},"ruleQuantity":{"type":"number"},"cardName":{"type":"string"},"kind":{"const":"copy"},"copyId":{"type":"string"},"printingId":{"type":"string"},"setId":{"type":"string"},"rarity":{"type":"string"},"finish":{"type":"string"},"shortCode":{"type":"string"},"language":{"type":"string"},"imageId":{"anyOf":[{"type":"string"},{"type":"null"}]},"reserved":{"type":"boolean"},"onLoan":{"type":"boolean"}},"required":["id","listId","quantity","tradeOverride","source","ruleQuantity","cardName","kind","copyId","printingId","setId","rarity","finish","shortCode","language","imageId","reserved","onLoan"]}]}},"owner":{"type":"object","properties":{"displayName":{"type":"string"},"gravatarHash":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["displayName","gravatarHash"]}},"required":["list","entries","owner"]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}},"security":[]}},"/api/v1/pod-tournaments/report/{token}":{"get":{"operationId":"publicPodTournamentsContract.report","tags":["Pod Tournaments"],"parameters":[{"name":"token","in":"path","required":true,"schema":{"type":"string","minLength":1}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"tournamentName":{"type":"string"},"status":{"enum":["setup","running","completed"],"type":"string"},"currentRound":{"type":"integer","minimum":0,"maximum":9007199254740991},"pairingStyle":{"enum":["none","pod","swiss"],"type":"string"},"playMode":{"enum":["1v1","2v2"],"type":"string"},"scoringScheme":{"enum":["standard","three_pod_reduced"],"type":"string"},"byePoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"matchFormat":{"enum":["bo1","bo3"],"type":"string"},"winPoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"drawPoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"regionsEnabled":{"type":"boolean"},"standings":{"type":"array","items":{"type":"object","properties":{"playerId":{"type":"string"},"displayName":{"type":"string"},"status":{"enum":["active","dropped"],"type":"string"},"droppedAfterRound":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"teamId":{"anyOf":[{"type":"string"},{"type":"null"}]},"score":{"type":"number"},"gamePoints":{"type":"number","minimum":0},"roundsPlayed":{"type":"integer","minimum":0,"maximum":9007199254740991},"pods3Count":{"type":"integer","minimum":0,"maximum":9007199254740991},"pods4Count":{"type":"integer","minimum":0,"maximum":9007199254740991},"byeCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"podWins":{"type":"integer","minimum":0,"maximum":9007199254740991},"wins":{"type":"integer","minimum":0,"maximum":9007199254740991},"draws":{"type":"integer","minimum":0,"maximum":9007199254740991},"losses":{"type":"integer","minimum":0,"maximum":9007199254740991},"region":{"anyOf":[{"type":"string"},{"type":"null"}]},"avgOpponentScore":{"type":"number"},"avgOpponentGamePoints":{"type":"number"}},"required":["playerId","displayName","status","droppedAfterRound","teamId","score","gamePoints","roundsPlayed","pods3Count","pods4Count","byeCount","podWins","wins","draws","losses","region","avgOpponentScore","avgOpponentGamePoints"]}},"rounds":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"roundNumber":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"status":{"enum":["reporting","finalized"],"type":"string"},"pairingStrategy":{"anyOf":[{"type":"string"},{"type":"null"}]},"penaltyTotal":{"anyOf":[{"type":"number"},{"type":"null"}]},"createdAt":{"type":"string"},"finalizedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"pods":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"podNumber":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"size":{"anyOf":[{"const":2},{"const":3},{"const":4}]},"resultStatus":{"enum":["pending","reported"],"type":"string"},"members":{"type":"array","items":{"type":"object","properties":{"playerId":{"type":"string"},"displayName":{"type":"string"},"teamId":{"anyOf":[{"type":"string"},{"type":"null"}]},"gamePoints":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"placement":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"points":{"anyOf":[{"type":"number"},{"type":"null"}]}},"required":["playerId","displayName","teamId","gamePoints","placement","points"]}},"penalty":{"anyOf":[{"type":"object","properties":{"total":{"type":"number"},"rematchPairs":{"type":"integer","minimum":0,"maximum":9007199254740991},"spread":{"type":"number"},"scoreSpread":{"type":"number"},"imbalance":{"type":"number"},"float":{"type":"number"},"threePodRepeat":{"type":"number"},"sameRegion":{"type":"number"},"repeatedRegion":{"type":"number"}},"required":["total","rematchPairs","spread","scoreSpread","imbalance","float","threePodRepeat","sameRegion","repeatedRegion"]},{"type":"null"}]}},"required":["id","podNumber","size","resultStatus","members","penalty"]}},"byes":{"type":"array","items":{"type":"object","properties":{"playerId":{"type":"string"},"displayName":{"type":"string"}},"required":["playerId","displayName"]}}},"required":["id","roundNumber","status","pairingStrategy","penaltyTotal","createdAt","finalizedAt","pods","byes"]}},"canSubmit":{"type":"boolean"}},"required":["tournamentName","status","currentRound","pairingStyle","playMode","scoringScheme","byePoints","matchFormat","winPoints","drawPoints","regionsEnabled","standings","rounds","canSubmit"]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}},"security":[]}},"/api/v1/pod-tournaments/report/{token}/pods/{podId}/result":{"put":{"operationId":"publicPodTournamentsContract.submitResult","tags":["Pod Tournaments"],"parameters":[{"name":"token","in":"path","required":true,"schema":{"type":"string","minLength":1}},{"name":"podId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"results":{"type":"array","minItems":2,"maxItems":4,"items":{"type":"object","properties":{"playerId":{"type":"string","format":"uuid"},"gamePoints":{"type":"integer","minimum":0,"maximum":99}},"required":["playerId","gamePoints"]}}},"required":["results"]}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"tournamentName":{"type":"string"},"status":{"enum":["setup","running","completed"],"type":"string"},"currentRound":{"type":"integer","minimum":0,"maximum":9007199254740991},"pairingStyle":{"enum":["none","pod","swiss"],"type":"string"},"playMode":{"enum":["1v1","2v2"],"type":"string"},"scoringScheme":{"enum":["standard","three_pod_reduced"],"type":"string"},"byePoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"matchFormat":{"enum":["bo1","bo3"],"type":"string"},"winPoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"drawPoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"regionsEnabled":{"type":"boolean"},"standings":{"type":"array","items":{"type":"object","properties":{"playerId":{"type":"string"},"displayName":{"type":"string"},"status":{"enum":["active","dropped"],"type":"string"},"droppedAfterRound":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"teamId":{"anyOf":[{"type":"string"},{"type":"null"}]},"score":{"type":"number"},"gamePoints":{"type":"number","minimum":0},"roundsPlayed":{"type":"integer","minimum":0,"maximum":9007199254740991},"pods3Count":{"type":"integer","minimum":0,"maximum":9007199254740991},"pods4Count":{"type":"integer","minimum":0,"maximum":9007199254740991},"byeCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"podWins":{"type":"integer","minimum":0,"maximum":9007199254740991},"wins":{"type":"integer","minimum":0,"maximum":9007199254740991},"draws":{"type":"integer","minimum":0,"maximum":9007199254740991},"losses":{"type":"integer","minimum":0,"maximum":9007199254740991},"region":{"anyOf":[{"type":"string"},{"type":"null"}]},"avgOpponentScore":{"type":"number"},"avgOpponentGamePoints":{"type":"number"}},"required":["playerId","displayName","status","droppedAfterRound","teamId","score","gamePoints","roundsPlayed","pods3Count","pods4Count","byeCount","podWins","wins","draws","losses","region","avgOpponentScore","avgOpponentGamePoints"]}},"rounds":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"roundNumber":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"status":{"enum":["reporting","finalized"],"type":"string"},"pairingStrategy":{"anyOf":[{"type":"string"},{"type":"null"}]},"penaltyTotal":{"anyOf":[{"type":"number"},{"type":"null"}]},"createdAt":{"type":"string"},"finalizedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"pods":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"podNumber":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"size":{"anyOf":[{"const":2},{"const":3},{"const":4}]},"resultStatus":{"enum":["pending","reported"],"type":"string"},"members":{"type":"array","items":{"type":"object","properties":{"playerId":{"type":"string"},"displayName":{"type":"string"},"teamId":{"anyOf":[{"type":"string"},{"type":"null"}]},"gamePoints":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"placement":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"points":{"anyOf":[{"type":"number"},{"type":"null"}]}},"required":["playerId","displayName","teamId","gamePoints","placement","points"]}},"penalty":{"anyOf":[{"type":"object","properties":{"total":{"type":"number"},"rematchPairs":{"type":"integer","minimum":0,"maximum":9007199254740991},"spread":{"type":"number"},"scoreSpread":{"type":"number"},"imbalance":{"type":"number"},"float":{"type":"number"},"threePodRepeat":{"type":"number"},"sameRegion":{"type":"number"},"repeatedRegion":{"type":"number"}},"required":["total","rematchPairs","spread","scoreSpread","imbalance","float","threePodRepeat","sameRegion","repeatedRegion"]},{"type":"null"}]}},"required":["id","podNumber","size","resultStatus","members","penalty"]}},"byes":{"type":"array","items":{"type":"object","properties":{"playerId":{"type":"string"},"displayName":{"type":"string"}},"required":["playerId","displayName"]}}},"required":["id","roundNumber","status","pairingStrategy","penaltyTotal","createdAt","finalizedAt","pods","byes"]}},"canSubmit":{"type":"boolean"}},"required":["tournamentName","status","currentRound","pairingStyle","playMode","scoringScheme","byePoints","matchFormat","winPoints","drawPoints","regionsEnabled","standings","rounds","canSubmit"]}}}},"400":{"description":"400","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"BAD_REQUEST"},"status":{"const":400},"message":{"type":"string","default":"Invalid result data"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"This link is follow-only"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"409":{"description":"409","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"CONFLICT"},"status":{"const":409},"message":{"type":"string","default":"Round already finalized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}},"security":[]}},"/api/v1/pod-tournaments/report/{token}/pods/{podId}/players/{playerId}/result":{"put":{"operationId":"publicPodTournamentsContract.submitPlayerResult","tags":["Pod Tournaments"],"parameters":[{"name":"token","in":"path","required":true,"schema":{"type":"string","minLength":1}},{"name":"podId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"playerId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"gamePoints":{"type":"integer","minimum":0,"maximum":99}},"required":["gamePoints"]}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"tournamentName":{"type":"string"},"status":{"enum":["setup","running","completed"],"type":"string"},"currentRound":{"type":"integer","minimum":0,"maximum":9007199254740991},"pairingStyle":{"enum":["none","pod","swiss"],"type":"string"},"playMode":{"enum":["1v1","2v2"],"type":"string"},"scoringScheme":{"enum":["standard","three_pod_reduced"],"type":"string"},"byePoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"matchFormat":{"enum":["bo1","bo3"],"type":"string"},"winPoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"drawPoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"regionsEnabled":{"type":"boolean"},"standings":{"type":"array","items":{"type":"object","properties":{"playerId":{"type":"string"},"displayName":{"type":"string"},"status":{"enum":["active","dropped"],"type":"string"},"droppedAfterRound":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"teamId":{"anyOf":[{"type":"string"},{"type":"null"}]},"score":{"type":"number"},"gamePoints":{"type":"number","minimum":0},"roundsPlayed":{"type":"integer","minimum":0,"maximum":9007199254740991},"pods3Count":{"type":"integer","minimum":0,"maximum":9007199254740991},"pods4Count":{"type":"integer","minimum":0,"maximum":9007199254740991},"byeCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"podWins":{"type":"integer","minimum":0,"maximum":9007199254740991},"wins":{"type":"integer","minimum":0,"maximum":9007199254740991},"draws":{"type":"integer","minimum":0,"maximum":9007199254740991},"losses":{"type":"integer","minimum":0,"maximum":9007199254740991},"region":{"anyOf":[{"type":"string"},{"type":"null"}]},"avgOpponentScore":{"type":"number"},"avgOpponentGamePoints":{"type":"number"}},"required":["playerId","displayName","status","droppedAfterRound","teamId","score","gamePoints","roundsPlayed","pods3Count","pods4Count","byeCount","podWins","wins","draws","losses","region","avgOpponentScore","avgOpponentGamePoints"]}},"rounds":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"roundNumber":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"status":{"enum":["reporting","finalized"],"type":"string"},"pairingStrategy":{"anyOf":[{"type":"string"},{"type":"null"}]},"penaltyTotal":{"anyOf":[{"type":"number"},{"type":"null"}]},"createdAt":{"type":"string"},"finalizedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"pods":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"podNumber":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"size":{"anyOf":[{"const":2},{"const":3},{"const":4}]},"resultStatus":{"enum":["pending","reported"],"type":"string"},"members":{"type":"array","items":{"type":"object","properties":{"playerId":{"type":"string"},"displayName":{"type":"string"},"teamId":{"anyOf":[{"type":"string"},{"type":"null"}]},"gamePoints":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"placement":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"points":{"anyOf":[{"type":"number"},{"type":"null"}]}},"required":["playerId","displayName","teamId","gamePoints","placement","points"]}},"penalty":{"anyOf":[{"type":"object","properties":{"total":{"type":"number"},"rematchPairs":{"type":"integer","minimum":0,"maximum":9007199254740991},"spread":{"type":"number"},"scoreSpread":{"type":"number"},"imbalance":{"type":"number"},"float":{"type":"number"},"threePodRepeat":{"type":"number"},"sameRegion":{"type":"number"},"repeatedRegion":{"type":"number"}},"required":["total","rematchPairs","spread","scoreSpread","imbalance","float","threePodRepeat","sameRegion","repeatedRegion"]},{"type":"null"}]}},"required":["id","podNumber","size","resultStatus","members","penalty"]}},"byes":{"type":"array","items":{"type":"object","properties":{"playerId":{"type":"string"},"displayName":{"type":"string"}},"required":["playerId","displayName"]}}},"required":["id","roundNumber","status","pairingStrategy","penaltyTotal","createdAt","finalizedAt","pods","byes"]}},"canSubmit":{"type":"boolean"}},"required":["tournamentName","status","currentRound","pairingStyle","playMode","scoringScheme","byePoints","matchFormat","winPoints","drawPoints","regionsEnabled","standings","rounds","canSubmit"]}}}},"400":{"description":"400","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"BAD_REQUEST"},"status":{"const":400},"message":{"type":"string","default":"Invalid result data"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"This link is follow-only"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"409":{"description":"409","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"CONFLICT"},"status":{"const":409},"message":{"type":"string","default":"Round already finalized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}},"security":[]}},"/api/v1/tournaments/submit/{token}":{"get":{"operationId":"publicTournamentsContract.landing","tags":["Tournaments"],"parameters":[{"name":"token","in":"path","required":true,"schema":{"type":"string","minLength":1}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string"},"hostDisplayName":{"type":"string"},"selfRegistrationOpen":{"type":"boolean"},"deckExpected":{"type":"boolean"},"viewerIsParticipant":{"type":"boolean"}},"required":["name","hostDisplayName","selfRegistrationOpen","deckExpected","viewerIsParticipant"]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}},"security":[]}},"/api/v1/tournaments/submit/{token}/request":{"post":{"operationId":"publicTournamentsContract.requestJoin","tags":["Tournaments"],"parameters":[{"name":"token","in":"path","required":true,"schema":{"type":"string","minLength":1}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"participantId":{"type":"string"},"status":{"enum":["requested","invited","active","dropped","no_show"],"type":"string"},"alreadyJoined":{"type":"boolean"}},"required":["participantId","status","alreadyJoined"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Self-registration is not open"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"409":{"description":"409","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"CONFLICT"},"status":{"const":409},"message":{"type":"string","default":"This tournament is no longer accepting entries"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/tournaments/staff-invite/{token}":{"get":{"operationId":"publicTournamentsContract.staffInviteLanding","tags":["Tournaments"],"parameters":[{"name":"token","in":"path","required":true,"schema":{"type":"string","minLength":1}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string"},"hostDisplayName":{"type":"string"},"role":{"enum":["organizer","judge"],"type":"string"},"alreadyStaff":{"type":"boolean"}},"required":["name","hostDisplayName","role","alreadyStaff"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/tournaments/staff-invite/{token}/claim":{"post":{"operationId":"publicTournamentsContract.claimStaffInvite","tags":["Tournaments"],"parameters":[{"name":"token","in":"path","required":true,"schema":{"type":"string","minLength":1}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"tournamentId":{"type":"string"},"role":{"enum":["organizer","judge"],"type":"string"},"alreadyStaff":{"type":"boolean"}},"required":["tournamentId","role","alreadyStaff"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/users/share/{token}":{"get":{"operationId":"publicUserShareContract.bundle","tags":["User Share"],"parameters":[{"name":"token","in":"path","required":true,"schema":{"type":"string","minLength":1}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"owner":{"type":"object","properties":{"displayName":{"type":"string"},"gravatarHash":{"type":"string"}},"required":["displayName","gravatarHash"]},"lists":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"intent":{"enum":["wish","trade","organize"],"type":"string"},"kind":{"enum":["card","printing","copy"],"type":"string"},"entryCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"isPublic":{"type":"boolean"},"viaGroups":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"slug":{"type":"string"},"name":{"type":"string"}},"required":["id","slug","name"]}},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"hasRule":{"type":"boolean"}},"required":["id","name","intent","kind","entryCount","isPublic","viaGroups","createdAt","updatedAt","hasRule"]}},"collections":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"viaGroups":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"slug":{"type":"string"},"name":{"type":"string"}},"required":["id","slug","name"]}}},"required":["id","name","description","viaGroups"]}}},"required":["owner","lists","collections"]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}},"security":[]}},"/api/v1/users/share/{token}/lists/{listId}":{"get":{"operationId":"publicUserShareContract.bundleList","tags":["User Share"],"parameters":[{"name":"token","in":"path","required":true,"schema":{"type":"string","minLength":1}},{"name":"listId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"list":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"intent":{"enum":["wish","trade","organize"],"type":"string"},"kind":{"enum":["card","printing","copy"],"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"tradeDefaults":{"type":"object","properties":{"pricePref":{"anyOf":[{"enum":["cm_lowest","tcg_lowest","ct_zero","absolute"],"type":"string"},{"type":"null"}]},"priceAbsoluteCents":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},{"type":"null"}]},"tradeType":{"anyOf":[{"enum":["cards","money","both"],"type":"string"},{"type":"null"}]}},"required":["pricePref","priceAbsoluteCents","tradeType"]},"currency":{"anyOf":[{"enum":["EUR","USD"],"type":"string"},{"type":"null"}]}},"required":["id","name","intent","kind","createdAt","updatedAt","tradeDefaults","currency"]},"entries":{"type":"array","items":{"anyOf":[{"type":"object","properties":{"id":{"anyOf":[{"type":"string"},{"type":"null"}]},"listId":{"type":"string"},"quantity":{"type":"number"},"tradeOverride":{"type":"object","properties":{"pricePref":{"anyOf":[{"enum":["cm_lowest","tcg_lowest","ct_zero","absolute"],"type":"string"},{"type":"null"}]},"priceAbsoluteCents":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},{"type":"null"}]},"tradeType":{"anyOf":[{"enum":["cards","money","both"],"type":"string"},{"type":"null"}]}},"required":["pricePref","priceAbsoluteCents","tradeType"]},"source":{"enum":["manual","rule","both"],"type":"string"},"ruleQuantity":{"type":"number"},"cardName":{"type":"string"},"kind":{"const":"card"},"cardId":{"type":"string"}},"required":["id","listId","quantity","tradeOverride","source","ruleQuantity","cardName","kind","cardId"]},{"type":"object","properties":{"id":{"anyOf":[{"type":"string"},{"type":"null"}]},"listId":{"type":"string"},"quantity":{"type":"number"},"tradeOverride":{"type":"object","properties":{"pricePref":{"anyOf":[{"enum":["cm_lowest","tcg_lowest","ct_zero","absolute"],"type":"string"},{"type":"null"}]},"priceAbsoluteCents":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},{"type":"null"}]},"tradeType":{"anyOf":[{"enum":["cards","money","both"],"type":"string"},{"type":"null"}]}},"required":["pricePref","priceAbsoluteCents","tradeType"]},"source":{"enum":["manual","rule","both"],"type":"string"},"ruleQuantity":{"type":"number"},"cardName":{"type":"string"},"kind":{"const":"printing"},"printingId":{"type":"string"},"setId":{"type":"string"},"rarity":{"type":"string"},"finish":{"type":"string"},"shortCode":{"type":"string"},"language":{"type":"string"},"imageId":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["id","listId","quantity","tradeOverride","source","ruleQuantity","cardName","kind","printingId","setId","rarity","finish","shortCode","language","imageId"]},{"type":"object","properties":{"id":{"anyOf":[{"type":"string"},{"type":"null"}]},"listId":{"type":"string"},"quantity":{"type":"number"},"tradeOverride":{"type":"object","properties":{"pricePref":{"anyOf":[{"enum":["cm_lowest","tcg_lowest","ct_zero","absolute"],"type":"string"},{"type":"null"}]},"priceAbsoluteCents":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},{"type":"null"}]},"tradeType":{"anyOf":[{"enum":["cards","money","both"],"type":"string"},{"type":"null"}]}},"required":["pricePref","priceAbsoluteCents","tradeType"]},"source":{"enum":["manual","rule","both"],"type":"string"},"ruleQuantity":{"type":"number"},"cardName":{"type":"string"},"kind":{"const":"copy"},"copyId":{"type":"string"},"printingId":{"type":"string"},"setId":{"type":"string"},"rarity":{"type":"string"},"finish":{"type":"string"},"shortCode":{"type":"string"},"language":{"type":"string"},"imageId":{"anyOf":[{"type":"string"},{"type":"null"}]},"reserved":{"type":"boolean"},"onLoan":{"type":"boolean"}},"required":["id","listId","quantity","tradeOverride","source","ruleQuantity","cardName","kind","copyId","printingId","setId","rarity","finish","shortCode","language","imageId","reserved","onLoan"]}]}},"owner":{"type":"object","properties":{"displayName":{"type":"string"},"gravatarHash":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["displayName","gravatarHash"]}},"required":["list","entries","owner"]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}},"security":[]}},"/api/v1/rules":{"get":{"operationId":"rulesContract.list","tags":["Rules"],"parameters":[{"name":"kind","in":"query","required":true,"schema":{"enum":["core","tournament"],"type":"string"},"allowEmptyValue":true,"allowReserved":true},{"name":"version","in":"query","required":false,"schema":{"type":"string"},"allowEmptyValue":true,"allowReserved":true}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"kind":{"enum":["core","tournament"],"type":"string"},"rules":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"kind":{"enum":["core","tournament"],"type":"string"},"version":{"type":"string"},"ruleNumber":{"type":"string"},"sortOrder":{"type":"number"},"depth":{"type":"number"},"ruleType":{"enum":["title","subtitle","text"],"type":"string"},"content":{"type":"string"},"changeType":{"enum":["added","modified","removed"],"type":"string"}},"required":["id","kind","version","ruleNumber","sortOrder","depth","ruleType","content","changeType"]}},"version":{"type":"string"},"changes":{"type":"object","properties":{"added":{"type":"array","items":{"type":"string"}},"modifiedPrev":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"string"}},"removed":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"kind":{"enum":["core","tournament"],"type":"string"},"version":{"type":"string"},"ruleNumber":{"type":"string"},"sortOrder":{"type":"number"},"depth":{"type":"number"},"ruleType":{"enum":["title","subtitle","text"],"type":"string"},"content":{"type":"string"},"changeType":{"enum":["added","modified","removed"],"type":"string"}},"required":["id","kind","version","ruleNumber","sortOrder","depth","ruleType","content","changeType"]}}},"required":["added","modifiedPrev","removed"]}},"required":["kind","rules","version"]}}}}},"security":[]}},"/api/v1/rules/versions":{"get":{"operationId":"rulesContract.versions","tags":["Rules"],"parameters":[{"name":"kind","in":"query","schema":{"enum":["core","tournament"],"type":"string"},"allowEmptyValue":true,"allowReserved":true}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"versions":{"type":"array","items":{"type":"object","properties":{"kind":{"enum":["core","tournament"],"type":"string"},"version":{"type":"string"},"comments":{"anyOf":[{"type":"string"},{"type":"null"}]},"importedAt":{"type":"string"}},"required":["kind","version","comments","importedAt"]}}},"required":["versions"]}}}}},"security":[]}},"/api/v1/scan/manifest":{"get":{"operationId":"scanContract.manifest","tags":["Scan"],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"available":{"type":"boolean"},"formatVersion":{"anyOf":[{"type":"number"},{"type":"null"}]},"bankHash":{"anyOf":[{"type":"string"},{"type":"null"}]},"entryCount":{"anyOf":[{"type":"number"},{"type":"null"}]},"builtAt":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}]},"bankUrl":{"anyOf":[{"type":"string"},{"type":"null"}]},"labelsUrl":{"anyOf":[{"type":"string"},{"type":"null"}]},"encoderUrl":{"type":"string"},"opencvUrl":{"type":"string"}},"required":["available","formatVersion","bankHash","entryCount","builtAt","bankUrl","labelsUrl","encoderUrl","opencvUrl"]}}}}},"security":[]}},"/api/v1/sets":{"get":{"operationId":"setsContract.list","tags":["Sets"],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"sets":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"slug":{"type":"string"},"name":{"type":"string"},"releasedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"released":{"type":"boolean"},"setType":{"enum":["main","supplemental"],"type":"string"},"cardCount":{"type":"number"},"printingCount":{"type":"number"},"coverImageId":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["id","slug","name","releasedAt","released","setType","cardCount","printingCount","coverImageId"]}}},"required":["sets"]}}}}},"security":[]}},"/api/v1/sets/{setSlug}":{"get":{"operationId":"setsContract.detail","tags":["Sets"],"parameters":[{"name":"setSlug","in":"path","required":true,"schema":{"type":"string","minLength":1}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"set":{"type":"object","properties":{"id":{"type":"string"},"slug":{"type":"string"},"name":{"type":"string"},"releasedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"released":{"type":"boolean"},"setType":{"enum":["main","supplemental"],"type":"string"}},"required":["id","slug","name","releasedAt","released","setType"]},"cards":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"object","properties":{"id":{"type":"string"},"slug":{"type":"string"},"name":{"type":"string"},"type":{"type":"string"},"types":{"type":"array","minItems":1,"items":{"type":"string"}},"superTypes":{"type":"array","items":{"type":"string"}},"domains":{"type":"array","items":{"type":"string"}},"might":{"anyOf":[{"type":"number"},{"type":"null"}]},"energy":{"anyOf":[{"type":"number"},{"type":"null"}]},"power":{"anyOf":[{"type":"number"},{"type":"null"}]},"keywords":{"type":"array","items":{"type":"string"}},"tags":{"type":"array","items":{"type":"string"}},"mightBonus":{"anyOf":[{"type":"number"},{"type":"null"}]},"maxCopiesOverride":{"anyOf":[{"type":"number"},{"type":"null"}]},"errata":{"anyOf":[{"type":"object","properties":{"correctedRulesText":{"anyOf":[{"type":"string"},{"type":"null"}]},"correctedEffectText":{"anyOf":[{"type":"string"},{"type":"null"}]},"source":{"type":"string"},"sourceUrl":{"anyOf":[{"type":"string"},{"type":"null"}]},"effectiveDate":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["correctedRulesText","correctedEffectText","source","sourceUrl","effectiveDate"]},{"type":"null"}]},"bans":{"type":"array","items":{"type":"object","properties":{"formatId":{"type":"string"},"formatName":{"type":"string"},"bannedAt":{"type":"string"},"reason":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["formatId","formatName","bannedAt","reason"]}}},"required":["id","slug","name","type","types","superTypes","domains","might","energy","power","keywords","tags","mightBonus","maxCopiesOverride","errata","bans"]}},"printings":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"shortCode":{"type":"string"},"setId":{"type":"string"},"rarity":{"type":"string"},"artVariant":{"type":"string"},"isSigned":{"type":"boolean"},"markers":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"slug":{"type":"string"},"label":{"type":"string"},"description":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["id","slug","label","description"]}},"distributionChannels":{"type":"array","items":{"type":"object","properties":{"channel":{"type":"object","properties":{"id":{"type":"string"},"slug":{"type":"string"},"label":{"type":"string"},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"kind":{"enum":["event","product"],"type":"string"},"parentId":{"anyOf":[{"type":"string"},{"type":"null"}]},"childrenLabel":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["id","slug","label","description","kind","parentId","childrenLabel"]},"distributionNote":{"anyOf":[{"type":"string"},{"type":"null"}]},"ancestorLabels":{"type":"array","items":{"type":"string"}}},"required":["channel","distributionNote","ancestorLabels"]}},"finish":{"type":"string"},"size":{"type":"string"},"images":{"type":"array","items":{"type":"object","properties":{"face":{"enum":["front","back"],"type":"string"},"imageId":{"type":"string"}},"required":["face","imageId"]}},"artist":{"type":"string"},"publicCode":{"type":"string"},"printedRulesText":{"anyOf":[{"type":"string"},{"type":"null"}]},"printedEffectText":{"anyOf":[{"type":"string"},{"type":"null"}]},"flavorText":{"anyOf":[{"type":"string"},{"type":"null"}]},"printedName":{"anyOf":[{"type":"string"},{"type":"null"}]},"printedYear":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"language":{"type":"string"},"comment":{"anyOf":[{"type":"string"},{"type":"null"}]},"canonicalRank":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},"cardId":{"type":"string"}},"required":["id","shortCode","setId","rarity","artVariant","isSigned","markers","distributionChannels","finish","size","images","artist","publicCode","printedRulesText","printedEffectText","flavorText","printedName","printedYear","language","comment","canonicalRank","cardId"]}}},"required":["set","cards","printings"]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Set not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}},"security":[]}},"/api/v1/site-settings":{"get":{"operationId":"siteSettingsContract.get","tags":["Site Settings"],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"settings":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"string"}}},"required":["settings"]}}}}},"security":[]}},"/api/v1/sitemap-data":{"get":{"operationId":"sitemapContract.get","tags":["Sitemap"],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"cards":{"type":"array","items":{"type":"object","properties":{"slug":{"type":"string"},"updatedAt":{"type":"string"}},"required":["slug","updatedAt"]}},"sets":{"type":"array","items":{"type":"object","properties":{"slug":{"type":"string"},"updatedAt":{"type":"string"}},"required":["slug","updatedAt"]}}},"required":["cards","sets"]}}}}},"security":[]}},"/api/v1/tournaments/{tournamentId}/deck-check/entries":{"get":{"operationId":"tournamentDeckCheckContract.listEntries","tags":["Deck Check"],"parameters":[{"name":"tournamentId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"event":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"eventDate":{"anyOf":[{"type":"string"},{"type":"null"}]},"format":{"anyOf":[{"type":"string"},{"type":"null"}]},"allowedSets":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}]},"status":{"enum":["active","archived"],"type":"string"},"entryCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"approvedCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"checkedCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"listLockMode":{"enum":["on_submit","at_deadline"],"type":"string"},"allowSelfSubmission":{"type":"boolean"},"submissionToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"submissionsCloseAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","name","eventDate","format","allowedSets","status","entryCount","approvedCount","checkedCount","listLockMode","allowSelfSubmission","submissionToken","submissionsCloseAt","createdAt","updatedAt"]},"entries":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"externalId":{"type":"string"},"participantId":{"anyOf":[{"type":"string"},{"type":"null"}]},"participantStatus":{"anyOf":[{"enum":["requested","invited","active","dropped","no_show"],"type":"string"},{"type":"null"}]},"source":{"enum":["api","manual","self"],"type":"string"},"playerName":{"type":"string"},"submittedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"state":{"enum":["editable","submitted","approved","checked","withdrawn"],"type":"string"},"reviewOutcome":{"anyOf":[{"enum":["ok","issue"],"type":"string"},{"type":"null"}]},"checkedByName":{"anyOf":[{"type":"string"},{"type":"null"}]},"checkedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"approvedByName":{"anyOf":[{"type":"string"},{"type":"null"}]},"approvedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"changedSinceReview":{"type":"boolean"},"unlockRequestedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"claimedUserName":{"anyOf":[{"type":"string"},{"type":"null"}]},"copyCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"verifiedCopyCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"unmatchedLineCount":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["id","externalId","participantId","participantStatus","source","playerName","submittedAt","state","reviewOutcome","checkedByName","checkedAt","approvedByName","approvedAt","changedSinceReview","unlockRequestedAt","claimedUserName","copyCount","verifiedCopyCount","unmatchedLineCount"]}}},"required":["event","entries"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"post":{"operationId":"tournamentDeckCheckContract.createEntry","tags":["Deck Check"],"parameters":[{"name":"tournamentId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"participantId":{"type":"string","format":"uuid"},"cards":{"type":"array","maxItems":200,"items":{"type":"object","properties":{"name":{"type":"string","minLength":1,"maxLength":300},"quantity":{"type":"integer","minimum":1,"maximum":99},"section":{"type":"string","minLength":1,"maxLength":50}},"required":["name","quantity","section"]},"default":[]}},"required":["participantId"]}}}},"responses":{"201":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"event":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"eventDate":{"anyOf":[{"type":"string"},{"type":"null"}]},"format":{"anyOf":[{"type":"string"},{"type":"null"}]},"allowedSets":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}]},"status":{"enum":["active","archived"],"type":"string"},"entryCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"approvedCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"checkedCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"listLockMode":{"enum":["on_submit","at_deadline"],"type":"string"},"allowSelfSubmission":{"type":"boolean"},"submissionToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"submissionsCloseAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","name","eventDate","format","allowedSets","status","entryCount","approvedCount","checkedCount","listLockMode","allowSelfSubmission","submissionToken","submissionsCloseAt","createdAt","updatedAt"]},"entry":{"type":"object","properties":{"id":{"type":"string"},"externalId":{"type":"string"},"source":{"enum":["api","manual","self"],"type":"string"},"playerName":{"type":"string"},"riotId":{"anyOf":[{"type":"string"},{"type":"null"}]},"allowDeckPublishing":{"type":"boolean"},"allowNameSharing":{"type":"boolean"},"allowRiotIdSharing":{"type":"boolean"},"submittedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"state":{"enum":["editable","submitted","approved","checked","withdrawn"],"type":"string"},"reviewOutcome":{"anyOf":[{"enum":["ok","issue"],"type":"string"},{"type":"null"}]},"checkedBy":{"anyOf":[{"type":"string"},{"type":"null"}]},"checkedByName":{"anyOf":[{"type":"string"},{"type":"null"}]},"checkedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"approvedByName":{"anyOf":[{"type":"string"},{"type":"null"}]},"approvedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"unlockRequestedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"notes":{"anyOf":[{"type":"string"},{"type":"null"}]},"changeSummary":{"anyOf":[{"type":"object","properties":{"added":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"zone":{"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0}},"required":["name","zone","quantity"]}},"removed":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"zone":{"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0}},"required":["name","zone","quantity"]}},"changed":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"zone":{"type":"string"},"oldQuantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"newQuantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0}},"required":["name","zone","oldQuantity","newQuantity"]}}},"required":["added","removed","changed"]},{"type":"null"}]},"withdrawnAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"claimedUserId":{"anyOf":[{"type":"string"},{"type":"null"}]},"claimedUserName":{"anyOf":[{"type":"string"},{"type":"null"}]},"claimSource":{"anyOf":[{"enum":["judge_manual","self_submit","claim_link"],"type":"string"},{"type":"null"}]},"claimBlocked":{"type":"boolean"},"claimToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"playerMessage":{"anyOf":[{"type":"string"},{"type":"null"}]},"updatedAt":{"type":"string"}},"required":["id","externalId","source","playerName","riotId","allowDeckPublishing","allowNameSharing","allowRiotIdSharing","submittedAt","state","reviewOutcome","checkedBy","checkedByName","checkedAt","approvedByName","approvedAt","unlockRequestedAt","notes","changeSummary","withdrawnAt","claimedUserId","claimedUserName","claimSource","claimBlocked","claimToken","playerMessage","updatedAt"]},"cards":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"sortOrder":{"type":"integer","minimum":0,"maximum":9007199254740991},"rawName":{"type":"string"},"section":{"type":"string"},"zone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow"],"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"matchStatus":{"enum":["matched","ambiguous","unmatched"],"type":"string"},"foundCopies":{"type":"array","items":{"type":"boolean"}},"resolvedCardId":{"anyOf":[{"type":"string"},{"type":"null"}]},"resolvedPrintingId":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["id","sortOrder","rawName","section","zone","quantity","matchStatus","foundCopies","resolvedCardId","resolvedPrintingId"]}},"violations":{"type":"array","items":{"type":"object","properties":{"zone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow","deck"],"type":"string"},"code":{"type":"string"},"message":{"type":"string"},"cardId":{"type":"string"}},"required":["zone","code","message"]}},"typeCounts":{"type":"array","items":{"type":"object","properties":{"cardType":{"type":"string"},"count":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["cardType","count"]}},"domainDistribution":{"type":"array","items":{"type":"object","properties":{"domain":{"type":"string"},"count":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["domain","count"]}},"zoneSuggestions":{"type":"array","items":{"type":"object","properties":{"cardId":{"type":"string"},"cardName":{"type":"string"},"currentZone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow"],"type":"string"},"suggestedZone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow"],"type":"string"}},"required":["cardId","cardName","currentZone","suggestedZone"]}}},"required":["event","entry","cards","violations","typeCounts","domainDistribution","zoneSuggestions"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"409":{"description":"409","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"CONFLICT"},"status":{"const":409},"message":{"type":"string","default":"Event is archived"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"422":{"description":"422","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"VALIDATION_ERROR"},"status":{"const":422},"message":{"type":"string","default":"Unknown deck section"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/tournaments/{tournamentId}/deck-check/entries/{entryId}":{"get":{"operationId":"tournamentDeckCheckContract.getEntry","tags":["Deck Check"],"parameters":[{"name":"tournamentId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"entryId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"event":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"eventDate":{"anyOf":[{"type":"string"},{"type":"null"}]},"format":{"anyOf":[{"type":"string"},{"type":"null"}]},"allowedSets":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}]},"status":{"enum":["active","archived"],"type":"string"},"entryCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"approvedCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"checkedCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"listLockMode":{"enum":["on_submit","at_deadline"],"type":"string"},"allowSelfSubmission":{"type":"boolean"},"submissionToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"submissionsCloseAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","name","eventDate","format","allowedSets","status","entryCount","approvedCount","checkedCount","listLockMode","allowSelfSubmission","submissionToken","submissionsCloseAt","createdAt","updatedAt"]},"entry":{"type":"object","properties":{"id":{"type":"string"},"externalId":{"type":"string"},"source":{"enum":["api","manual","self"],"type":"string"},"playerName":{"type":"string"},"riotId":{"anyOf":[{"type":"string"},{"type":"null"}]},"allowDeckPublishing":{"type":"boolean"},"allowNameSharing":{"type":"boolean"},"allowRiotIdSharing":{"type":"boolean"},"submittedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"state":{"enum":["editable","submitted","approved","checked","withdrawn"],"type":"string"},"reviewOutcome":{"anyOf":[{"enum":["ok","issue"],"type":"string"},{"type":"null"}]},"checkedBy":{"anyOf":[{"type":"string"},{"type":"null"}]},"checkedByName":{"anyOf":[{"type":"string"},{"type":"null"}]},"checkedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"approvedByName":{"anyOf":[{"type":"string"},{"type":"null"}]},"approvedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"unlockRequestedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"notes":{"anyOf":[{"type":"string"},{"type":"null"}]},"changeSummary":{"anyOf":[{"type":"object","properties":{"added":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"zone":{"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0}},"required":["name","zone","quantity"]}},"removed":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"zone":{"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0}},"required":["name","zone","quantity"]}},"changed":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"zone":{"type":"string"},"oldQuantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"newQuantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0}},"required":["name","zone","oldQuantity","newQuantity"]}}},"required":["added","removed","changed"]},{"type":"null"}]},"withdrawnAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"claimedUserId":{"anyOf":[{"type":"string"},{"type":"null"}]},"claimedUserName":{"anyOf":[{"type":"string"},{"type":"null"}]},"claimSource":{"anyOf":[{"enum":["judge_manual","self_submit","claim_link"],"type":"string"},{"type":"null"}]},"claimBlocked":{"type":"boolean"},"claimToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"playerMessage":{"anyOf":[{"type":"string"},{"type":"null"}]},"updatedAt":{"type":"string"}},"required":["id","externalId","source","playerName","riotId","allowDeckPublishing","allowNameSharing","allowRiotIdSharing","submittedAt","state","reviewOutcome","checkedBy","checkedByName","checkedAt","approvedByName","approvedAt","unlockRequestedAt","notes","changeSummary","withdrawnAt","claimedUserId","claimedUserName","claimSource","claimBlocked","claimToken","playerMessage","updatedAt"]},"cards":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"sortOrder":{"type":"integer","minimum":0,"maximum":9007199254740991},"rawName":{"type":"string"},"section":{"type":"string"},"zone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow"],"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"matchStatus":{"enum":["matched","ambiguous","unmatched"],"type":"string"},"foundCopies":{"type":"array","items":{"type":"boolean"}},"resolvedCardId":{"anyOf":[{"type":"string"},{"type":"null"}]},"resolvedPrintingId":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["id","sortOrder","rawName","section","zone","quantity","matchStatus","foundCopies","resolvedCardId","resolvedPrintingId"]}},"violations":{"type":"array","items":{"type":"object","properties":{"zone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow","deck"],"type":"string"},"code":{"type":"string"},"message":{"type":"string"},"cardId":{"type":"string"}},"required":["zone","code","message"]}},"typeCounts":{"type":"array","items":{"type":"object","properties":{"cardType":{"type":"string"},"count":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["cardType","count"]}},"domainDistribution":{"type":"array","items":{"type":"object","properties":{"domain":{"type":"string"},"count":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["domain","count"]}},"zoneSuggestions":{"type":"array","items":{"type":"object","properties":{"cardId":{"type":"string"},"cardName":{"type":"string"},"currentZone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow"],"type":"string"},"suggestedZone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow"],"type":"string"}},"required":["cardId","cardName","currentZone","suggestedZone"]}}},"required":["event","entry","cards","violations","typeCounts","domainDistribution","zoneSuggestions"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament or entry not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"patch":{"operationId":"tournamentDeckCheckContract.updateEntry","tags":["Deck Check"],"parameters":[{"name":"tournamentId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"entryId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"requestBody":{"required":false,"content":{"application/json":{"schema":{"type":"object","properties":{"playerName":{"type":"string","minLength":1,"maxLength":120},"riotId":{"anyOf":[{"type":"string","maxLength":120},{"type":"null"}]},"playerMessage":{"anyOf":[{"type":"string","maxLength":2000},{"type":"null"}]},"allowDeckPublishing":{"type":"boolean"},"allowNameSharing":{"type":"boolean"},"allowRiotIdSharing":{"type":"boolean"}}}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"event":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"eventDate":{"anyOf":[{"type":"string"},{"type":"null"}]},"format":{"anyOf":[{"type":"string"},{"type":"null"}]},"allowedSets":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}]},"status":{"enum":["active","archived"],"type":"string"},"entryCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"approvedCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"checkedCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"listLockMode":{"enum":["on_submit","at_deadline"],"type":"string"},"allowSelfSubmission":{"type":"boolean"},"submissionToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"submissionsCloseAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","name","eventDate","format","allowedSets","status","entryCount","approvedCount","checkedCount","listLockMode","allowSelfSubmission","submissionToken","submissionsCloseAt","createdAt","updatedAt"]},"entry":{"type":"object","properties":{"id":{"type":"string"},"externalId":{"type":"string"},"source":{"enum":["api","manual","self"],"type":"string"},"playerName":{"type":"string"},"riotId":{"anyOf":[{"type":"string"},{"type":"null"}]},"allowDeckPublishing":{"type":"boolean"},"allowNameSharing":{"type":"boolean"},"allowRiotIdSharing":{"type":"boolean"},"submittedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"state":{"enum":["editable","submitted","approved","checked","withdrawn"],"type":"string"},"reviewOutcome":{"anyOf":[{"enum":["ok","issue"],"type":"string"},{"type":"null"}]},"checkedBy":{"anyOf":[{"type":"string"},{"type":"null"}]},"checkedByName":{"anyOf":[{"type":"string"},{"type":"null"}]},"checkedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"approvedByName":{"anyOf":[{"type":"string"},{"type":"null"}]},"approvedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"unlockRequestedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"notes":{"anyOf":[{"type":"string"},{"type":"null"}]},"changeSummary":{"anyOf":[{"type":"object","properties":{"added":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"zone":{"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0}},"required":["name","zone","quantity"]}},"removed":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"zone":{"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0}},"required":["name","zone","quantity"]}},"changed":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"zone":{"type":"string"},"oldQuantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"newQuantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0}},"required":["name","zone","oldQuantity","newQuantity"]}}},"required":["added","removed","changed"]},{"type":"null"}]},"withdrawnAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"claimedUserId":{"anyOf":[{"type":"string"},{"type":"null"}]},"claimedUserName":{"anyOf":[{"type":"string"},{"type":"null"}]},"claimSource":{"anyOf":[{"enum":["judge_manual","self_submit","claim_link"],"type":"string"},{"type":"null"}]},"claimBlocked":{"type":"boolean"},"claimToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"playerMessage":{"anyOf":[{"type":"string"},{"type":"null"}]},"updatedAt":{"type":"string"}},"required":["id","externalId","source","playerName","riotId","allowDeckPublishing","allowNameSharing","allowRiotIdSharing","submittedAt","state","reviewOutcome","checkedBy","checkedByName","checkedAt","approvedByName","approvedAt","unlockRequestedAt","notes","changeSummary","withdrawnAt","claimedUserId","claimedUserName","claimSource","claimBlocked","claimToken","playerMessage","updatedAt"]},"cards":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"sortOrder":{"type":"integer","minimum":0,"maximum":9007199254740991},"rawName":{"type":"string"},"section":{"type":"string"},"zone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow"],"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"matchStatus":{"enum":["matched","ambiguous","unmatched"],"type":"string"},"foundCopies":{"type":"array","items":{"type":"boolean"}},"resolvedCardId":{"anyOf":[{"type":"string"},{"type":"null"}]},"resolvedPrintingId":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["id","sortOrder","rawName","section","zone","quantity","matchStatus","foundCopies","resolvedCardId","resolvedPrintingId"]}},"violations":{"type":"array","items":{"type":"object","properties":{"zone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow","deck"],"type":"string"},"code":{"type":"string"},"message":{"type":"string"},"cardId":{"type":"string"}},"required":["zone","code","message"]}},"typeCounts":{"type":"array","items":{"type":"object","properties":{"cardType":{"type":"string"},"count":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["cardType","count"]}},"domainDistribution":{"type":"array","items":{"type":"object","properties":{"domain":{"type":"string"},"count":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["domain","count"]}},"zoneSuggestions":{"type":"array","items":{"type":"object","properties":{"cardId":{"type":"string"},"cardName":{"type":"string"},"currentZone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow"],"type":"string"},"suggestedZone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow"],"type":"string"}},"required":["cardId","cardName","currentZone","suggestedZone"]}}},"required":["event","entry","cards","violations","typeCounts","domainDistribution","zoneSuggestions"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament or entry not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"delete":{"operationId":"tournamentDeckCheckContract.deleteEntry","tags":["Deck Check"],"parameters":[{"name":"tournamentId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"entryId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"204":{"description":"OK","content":{"application/json":{"schema":{"anyOf":[{},{"not":{}}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament or entry not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/tournaments/{tournamentId}/deck-check/entries/{entryId}/state":{"put":{"operationId":"tournamentDeckCheckContract.setEntryState","tags":["Deck Check"],"parameters":[{"name":"tournamentId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"entryId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"state":{"enum":["editable","submitted","approved","checked","withdrawn"],"type":"string"},"reviewOutcome":{"anyOf":[{"enum":["ok","issue"],"type":"string"},{"type":"null"}]},"notes":{"anyOf":[{"type":"string","maxLength":4000},{"type":"null"}]},"playerMessage":{"anyOf":[{"type":"string","maxLength":2000},{"type":"null"}]}},"required":["state"]}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"event":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"eventDate":{"anyOf":[{"type":"string"},{"type":"null"}]},"format":{"anyOf":[{"type":"string"},{"type":"null"}]},"allowedSets":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}]},"status":{"enum":["active","archived"],"type":"string"},"entryCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"approvedCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"checkedCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"listLockMode":{"enum":["on_submit","at_deadline"],"type":"string"},"allowSelfSubmission":{"type":"boolean"},"submissionToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"submissionsCloseAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","name","eventDate","format","allowedSets","status","entryCount","approvedCount","checkedCount","listLockMode","allowSelfSubmission","submissionToken","submissionsCloseAt","createdAt","updatedAt"]},"entry":{"type":"object","properties":{"id":{"type":"string"},"externalId":{"type":"string"},"source":{"enum":["api","manual","self"],"type":"string"},"playerName":{"type":"string"},"riotId":{"anyOf":[{"type":"string"},{"type":"null"}]},"allowDeckPublishing":{"type":"boolean"},"allowNameSharing":{"type":"boolean"},"allowRiotIdSharing":{"type":"boolean"},"submittedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"state":{"enum":["editable","submitted","approved","checked","withdrawn"],"type":"string"},"reviewOutcome":{"anyOf":[{"enum":["ok","issue"],"type":"string"},{"type":"null"}]},"checkedBy":{"anyOf":[{"type":"string"},{"type":"null"}]},"checkedByName":{"anyOf":[{"type":"string"},{"type":"null"}]},"checkedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"approvedByName":{"anyOf":[{"type":"string"},{"type":"null"}]},"approvedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"unlockRequestedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"notes":{"anyOf":[{"type":"string"},{"type":"null"}]},"changeSummary":{"anyOf":[{"type":"object","properties":{"added":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"zone":{"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0}},"required":["name","zone","quantity"]}},"removed":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"zone":{"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0}},"required":["name","zone","quantity"]}},"changed":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"zone":{"type":"string"},"oldQuantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"newQuantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0}},"required":["name","zone","oldQuantity","newQuantity"]}}},"required":["added","removed","changed"]},{"type":"null"}]},"withdrawnAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"claimedUserId":{"anyOf":[{"type":"string"},{"type":"null"}]},"claimedUserName":{"anyOf":[{"type":"string"},{"type":"null"}]},"claimSource":{"anyOf":[{"enum":["judge_manual","self_submit","claim_link"],"type":"string"},{"type":"null"}]},"claimBlocked":{"type":"boolean"},"claimToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"playerMessage":{"anyOf":[{"type":"string"},{"type":"null"}]},"updatedAt":{"type":"string"}},"required":["id","externalId","source","playerName","riotId","allowDeckPublishing","allowNameSharing","allowRiotIdSharing","submittedAt","state","reviewOutcome","checkedBy","checkedByName","checkedAt","approvedByName","approvedAt","unlockRequestedAt","notes","changeSummary","withdrawnAt","claimedUserId","claimedUserName","claimSource","claimBlocked","claimToken","playerMessage","updatedAt"]},"cards":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"sortOrder":{"type":"integer","minimum":0,"maximum":9007199254740991},"rawName":{"type":"string"},"section":{"type":"string"},"zone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow"],"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"matchStatus":{"enum":["matched","ambiguous","unmatched"],"type":"string"},"foundCopies":{"type":"array","items":{"type":"boolean"}},"resolvedCardId":{"anyOf":[{"type":"string"},{"type":"null"}]},"resolvedPrintingId":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["id","sortOrder","rawName","section","zone","quantity","matchStatus","foundCopies","resolvedCardId","resolvedPrintingId"]}},"violations":{"type":"array","items":{"type":"object","properties":{"zone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow","deck"],"type":"string"},"code":{"type":"string"},"message":{"type":"string"},"cardId":{"type":"string"}},"required":["zone","code","message"]}},"typeCounts":{"type":"array","items":{"type":"object","properties":{"cardType":{"type":"string"},"count":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["cardType","count"]}},"domainDistribution":{"type":"array","items":{"type":"object","properties":{"domain":{"type":"string"},"count":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["domain","count"]}},"zoneSuggestions":{"type":"array","items":{"type":"object","properties":{"cardId":{"type":"string"},"cardName":{"type":"string"},"currentZone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow"],"type":"string"},"suggestedZone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow"],"type":"string"}},"required":["cardId","cardName","currentZone","suggestedZone"]}}},"required":["event","entry","cards","violations","typeCounts","domainDistribution","zoneSuggestions"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament or entry not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"409":{"description":"409","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"CONFLICT"},"status":{"const":409},"message":{"type":"string","default":"Transition not allowed in the current state"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"422":{"description":"422","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"VALIDATION_ERROR"},"status":{"const":422},"message":{"type":"string","default":"Review outcome required for this transition"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/tournaments/{tournamentId}/deck-check/entries/{entryId}/unlock-request":{"delete":{"operationId":"tournamentDeckCheckContract.denyUnlockRequest","tags":["Deck Check"],"parameters":[{"name":"tournamentId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"entryId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"event":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"eventDate":{"anyOf":[{"type":"string"},{"type":"null"}]},"format":{"anyOf":[{"type":"string"},{"type":"null"}]},"allowedSets":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}]},"status":{"enum":["active","archived"],"type":"string"},"entryCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"approvedCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"checkedCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"listLockMode":{"enum":["on_submit","at_deadline"],"type":"string"},"allowSelfSubmission":{"type":"boolean"},"submissionToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"submissionsCloseAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","name","eventDate","format","allowedSets","status","entryCount","approvedCount","checkedCount","listLockMode","allowSelfSubmission","submissionToken","submissionsCloseAt","createdAt","updatedAt"]},"entry":{"type":"object","properties":{"id":{"type":"string"},"externalId":{"type":"string"},"source":{"enum":["api","manual","self"],"type":"string"},"playerName":{"type":"string"},"riotId":{"anyOf":[{"type":"string"},{"type":"null"}]},"allowDeckPublishing":{"type":"boolean"},"allowNameSharing":{"type":"boolean"},"allowRiotIdSharing":{"type":"boolean"},"submittedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"state":{"enum":["editable","submitted","approved","checked","withdrawn"],"type":"string"},"reviewOutcome":{"anyOf":[{"enum":["ok","issue"],"type":"string"},{"type":"null"}]},"checkedBy":{"anyOf":[{"type":"string"},{"type":"null"}]},"checkedByName":{"anyOf":[{"type":"string"},{"type":"null"}]},"checkedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"approvedByName":{"anyOf":[{"type":"string"},{"type":"null"}]},"approvedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"unlockRequestedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"notes":{"anyOf":[{"type":"string"},{"type":"null"}]},"changeSummary":{"anyOf":[{"type":"object","properties":{"added":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"zone":{"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0}},"required":["name","zone","quantity"]}},"removed":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"zone":{"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0}},"required":["name","zone","quantity"]}},"changed":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"zone":{"type":"string"},"oldQuantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"newQuantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0}},"required":["name","zone","oldQuantity","newQuantity"]}}},"required":["added","removed","changed"]},{"type":"null"}]},"withdrawnAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"claimedUserId":{"anyOf":[{"type":"string"},{"type":"null"}]},"claimedUserName":{"anyOf":[{"type":"string"},{"type":"null"}]},"claimSource":{"anyOf":[{"enum":["judge_manual","self_submit","claim_link"],"type":"string"},{"type":"null"}]},"claimBlocked":{"type":"boolean"},"claimToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"playerMessage":{"anyOf":[{"type":"string"},{"type":"null"}]},"updatedAt":{"type":"string"}},"required":["id","externalId","source","playerName","riotId","allowDeckPublishing","allowNameSharing","allowRiotIdSharing","submittedAt","state","reviewOutcome","checkedBy","checkedByName","checkedAt","approvedByName","approvedAt","unlockRequestedAt","notes","changeSummary","withdrawnAt","claimedUserId","claimedUserName","claimSource","claimBlocked","claimToken","playerMessage","updatedAt"]},"cards":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"sortOrder":{"type":"integer","minimum":0,"maximum":9007199254740991},"rawName":{"type":"string"},"section":{"type":"string"},"zone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow"],"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"matchStatus":{"enum":["matched","ambiguous","unmatched"],"type":"string"},"foundCopies":{"type":"array","items":{"type":"boolean"}},"resolvedCardId":{"anyOf":[{"type":"string"},{"type":"null"}]},"resolvedPrintingId":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["id","sortOrder","rawName","section","zone","quantity","matchStatus","foundCopies","resolvedCardId","resolvedPrintingId"]}},"violations":{"type":"array","items":{"type":"object","properties":{"zone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow","deck"],"type":"string"},"code":{"type":"string"},"message":{"type":"string"},"cardId":{"type":"string"}},"required":["zone","code","message"]}},"typeCounts":{"type":"array","items":{"type":"object","properties":{"cardType":{"type":"string"},"count":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["cardType","count"]}},"domainDistribution":{"type":"array","items":{"type":"object","properties":{"domain":{"type":"string"},"count":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["domain","count"]}},"zoneSuggestions":{"type":"array","items":{"type":"object","properties":{"cardId":{"type":"string"},"cardName":{"type":"string"},"currentZone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow"],"type":"string"},"suggestedZone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow"],"type":"string"}},"required":["cardId","cardName","currentZone","suggestedZone"]}}},"required":["event","entry","cards","violations","typeCounts","domainDistribution","zoneSuggestions"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament or entry not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/tournaments/{tournamentId}/deck-check/entries/{entryId}/cards":{"post":{"operationId":"tournamentDeckCheckContract.addCard","tags":["Deck Check"],"parameters":[{"name":"tournamentId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"entryId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string","minLength":1,"maxLength":300},"quantity":{"type":"integer","minimum":1,"maximum":99},"section":{"type":"string","minLength":1,"maxLength":50}},"required":["name","quantity","section"]}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"event":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"eventDate":{"anyOf":[{"type":"string"},{"type":"null"}]},"format":{"anyOf":[{"type":"string"},{"type":"null"}]},"allowedSets":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}]},"status":{"enum":["active","archived"],"type":"string"},"entryCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"approvedCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"checkedCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"listLockMode":{"enum":["on_submit","at_deadline"],"type":"string"},"allowSelfSubmission":{"type":"boolean"},"submissionToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"submissionsCloseAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","name","eventDate","format","allowedSets","status","entryCount","approvedCount","checkedCount","listLockMode","allowSelfSubmission","submissionToken","submissionsCloseAt","createdAt","updatedAt"]},"entry":{"type":"object","properties":{"id":{"type":"string"},"externalId":{"type":"string"},"source":{"enum":["api","manual","self"],"type":"string"},"playerName":{"type":"string"},"riotId":{"anyOf":[{"type":"string"},{"type":"null"}]},"allowDeckPublishing":{"type":"boolean"},"allowNameSharing":{"type":"boolean"},"allowRiotIdSharing":{"type":"boolean"},"submittedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"state":{"enum":["editable","submitted","approved","checked","withdrawn"],"type":"string"},"reviewOutcome":{"anyOf":[{"enum":["ok","issue"],"type":"string"},{"type":"null"}]},"checkedBy":{"anyOf":[{"type":"string"},{"type":"null"}]},"checkedByName":{"anyOf":[{"type":"string"},{"type":"null"}]},"checkedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"approvedByName":{"anyOf":[{"type":"string"},{"type":"null"}]},"approvedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"unlockRequestedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"notes":{"anyOf":[{"type":"string"},{"type":"null"}]},"changeSummary":{"anyOf":[{"type":"object","properties":{"added":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"zone":{"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0}},"required":["name","zone","quantity"]}},"removed":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"zone":{"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0}},"required":["name","zone","quantity"]}},"changed":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"zone":{"type":"string"},"oldQuantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"newQuantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0}},"required":["name","zone","oldQuantity","newQuantity"]}}},"required":["added","removed","changed"]},{"type":"null"}]},"withdrawnAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"claimedUserId":{"anyOf":[{"type":"string"},{"type":"null"}]},"claimedUserName":{"anyOf":[{"type":"string"},{"type":"null"}]},"claimSource":{"anyOf":[{"enum":["judge_manual","self_submit","claim_link"],"type":"string"},{"type":"null"}]},"claimBlocked":{"type":"boolean"},"claimToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"playerMessage":{"anyOf":[{"type":"string"},{"type":"null"}]},"updatedAt":{"type":"string"}},"required":["id","externalId","source","playerName","riotId","allowDeckPublishing","allowNameSharing","allowRiotIdSharing","submittedAt","state","reviewOutcome","checkedBy","checkedByName","checkedAt","approvedByName","approvedAt","unlockRequestedAt","notes","changeSummary","withdrawnAt","claimedUserId","claimedUserName","claimSource","claimBlocked","claimToken","playerMessage","updatedAt"]},"cards":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"sortOrder":{"type":"integer","minimum":0,"maximum":9007199254740991},"rawName":{"type":"string"},"section":{"type":"string"},"zone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow"],"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"matchStatus":{"enum":["matched","ambiguous","unmatched"],"type":"string"},"foundCopies":{"type":"array","items":{"type":"boolean"}},"resolvedCardId":{"anyOf":[{"type":"string"},{"type":"null"}]},"resolvedPrintingId":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["id","sortOrder","rawName","section","zone","quantity","matchStatus","foundCopies","resolvedCardId","resolvedPrintingId"]}},"violations":{"type":"array","items":{"type":"object","properties":{"zone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow","deck"],"type":"string"},"code":{"type":"string"},"message":{"type":"string"},"cardId":{"type":"string"}},"required":["zone","code","message"]}},"typeCounts":{"type":"array","items":{"type":"object","properties":{"cardType":{"type":"string"},"count":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["cardType","count"]}},"domainDistribution":{"type":"array","items":{"type":"object","properties":{"domain":{"type":"string"},"count":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["domain","count"]}},"zoneSuggestions":{"type":"array","items":{"type":"object","properties":{"cardId":{"type":"string"},"cardName":{"type":"string"},"currentZone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow"],"type":"string"},"suggestedZone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow"],"type":"string"}},"required":["cardId","cardName","currentZone","suggestedZone"]}}},"required":["event","entry","cards","violations","typeCounts","domainDistribution","zoneSuggestions"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament or entry not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"409":{"description":"409","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"CONFLICT"},"status":{"const":409},"message":{"type":"string","default":"Entry list is not yet submitted"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"422":{"description":"422","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"VALIDATION_ERROR"},"status":{"const":422},"message":{"type":"string","default":"Unknown deck section"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/tournaments/{tournamentId}/deck-check/entries/{entryId}/cards/{cardId}":{"patch":{"operationId":"tournamentDeckCheckContract.renameCard","tags":["Deck Check"],"parameters":[{"name":"tournamentId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"entryId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"cardId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string","minLength":1,"maxLength":300},"section":{"type":"string","minLength":1,"maxLength":50},"copies":{"type":"integer","minimum":1,"maximum":99}},"required":["name"]}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"event":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"eventDate":{"anyOf":[{"type":"string"},{"type":"null"}]},"format":{"anyOf":[{"type":"string"},{"type":"null"}]},"allowedSets":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}]},"status":{"enum":["active","archived"],"type":"string"},"entryCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"approvedCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"checkedCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"listLockMode":{"enum":["on_submit","at_deadline"],"type":"string"},"allowSelfSubmission":{"type":"boolean"},"submissionToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"submissionsCloseAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","name","eventDate","format","allowedSets","status","entryCount","approvedCount","checkedCount","listLockMode","allowSelfSubmission","submissionToken","submissionsCloseAt","createdAt","updatedAt"]},"entry":{"type":"object","properties":{"id":{"type":"string"},"externalId":{"type":"string"},"source":{"enum":["api","manual","self"],"type":"string"},"playerName":{"type":"string"},"riotId":{"anyOf":[{"type":"string"},{"type":"null"}]},"allowDeckPublishing":{"type":"boolean"},"allowNameSharing":{"type":"boolean"},"allowRiotIdSharing":{"type":"boolean"},"submittedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"state":{"enum":["editable","submitted","approved","checked","withdrawn"],"type":"string"},"reviewOutcome":{"anyOf":[{"enum":["ok","issue"],"type":"string"},{"type":"null"}]},"checkedBy":{"anyOf":[{"type":"string"},{"type":"null"}]},"checkedByName":{"anyOf":[{"type":"string"},{"type":"null"}]},"checkedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"approvedByName":{"anyOf":[{"type":"string"},{"type":"null"}]},"approvedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"unlockRequestedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"notes":{"anyOf":[{"type":"string"},{"type":"null"}]},"changeSummary":{"anyOf":[{"type":"object","properties":{"added":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"zone":{"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0}},"required":["name","zone","quantity"]}},"removed":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"zone":{"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0}},"required":["name","zone","quantity"]}},"changed":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"zone":{"type":"string"},"oldQuantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"newQuantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0}},"required":["name","zone","oldQuantity","newQuantity"]}}},"required":["added","removed","changed"]},{"type":"null"}]},"withdrawnAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"claimedUserId":{"anyOf":[{"type":"string"},{"type":"null"}]},"claimedUserName":{"anyOf":[{"type":"string"},{"type":"null"}]},"claimSource":{"anyOf":[{"enum":["judge_manual","self_submit","claim_link"],"type":"string"},{"type":"null"}]},"claimBlocked":{"type":"boolean"},"claimToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"playerMessage":{"anyOf":[{"type":"string"},{"type":"null"}]},"updatedAt":{"type":"string"}},"required":["id","externalId","source","playerName","riotId","allowDeckPublishing","allowNameSharing","allowRiotIdSharing","submittedAt","state","reviewOutcome","checkedBy","checkedByName","checkedAt","approvedByName","approvedAt","unlockRequestedAt","notes","changeSummary","withdrawnAt","claimedUserId","claimedUserName","claimSource","claimBlocked","claimToken","playerMessage","updatedAt"]},"cards":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"sortOrder":{"type":"integer","minimum":0,"maximum":9007199254740991},"rawName":{"type":"string"},"section":{"type":"string"},"zone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow"],"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"matchStatus":{"enum":["matched","ambiguous","unmatched"],"type":"string"},"foundCopies":{"type":"array","items":{"type":"boolean"}},"resolvedCardId":{"anyOf":[{"type":"string"},{"type":"null"}]},"resolvedPrintingId":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["id","sortOrder","rawName","section","zone","quantity","matchStatus","foundCopies","resolvedCardId","resolvedPrintingId"]}},"violations":{"type":"array","items":{"type":"object","properties":{"zone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow","deck"],"type":"string"},"code":{"type":"string"},"message":{"type":"string"},"cardId":{"type":"string"}},"required":["zone","code","message"]}},"typeCounts":{"type":"array","items":{"type":"object","properties":{"cardType":{"type":"string"},"count":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["cardType","count"]}},"domainDistribution":{"type":"array","items":{"type":"object","properties":{"domain":{"type":"string"},"count":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["domain","count"]}},"zoneSuggestions":{"type":"array","items":{"type":"object","properties":{"cardId":{"type":"string"},"cardName":{"type":"string"},"currentZone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow"],"type":"string"},"suggestedZone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow"],"type":"string"}},"required":["cardId","cardName","currentZone","suggestedZone"]}}},"required":["event","entry","cards","violations","typeCounts","domainDistribution","zoneSuggestions"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament, entry, or card not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"409":{"description":"409","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"CONFLICT"},"status":{"const":409},"message":{"type":"string","default":"Entry list is not yet submitted"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"422":{"description":"422","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"VALIDATION_ERROR"},"status":{"const":422},"message":{"type":"string","default":"Unknown deck section"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"put":{"operationId":"tournamentDeckCheckContract.tickCard","tags":["Deck Check"],"parameters":[{"name":"tournamentId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"entryId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"cardId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"copyIndex":{"type":"integer","minimum":0,"maximum":98},"found":{"type":"boolean"}},"required":["copyIndex","found"]}}}},"responses":{"204":{"description":"OK","content":{"application/json":{"schema":{"anyOf":[{},{"not":{}}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament or entry not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"409":{"description":"409","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"CONFLICT"},"status":{"const":409},"message":{"type":"string","default":"Entry list changed or not yet submitted"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/tournaments/{tournamentId}/deck-check/entries/{entryId}/zone-fixes":{"post":{"operationId":"tournamentDeckCheckContract.applyZoneFixes","tags":["Deck Check"],"parameters":[{"name":"tournamentId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"entryId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"cardIds":{"type":"array","minItems":1,"maxItems":200,"items":{"type":"string"}}},"required":["cardIds"]}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"event":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"eventDate":{"anyOf":[{"type":"string"},{"type":"null"}]},"format":{"anyOf":[{"type":"string"},{"type":"null"}]},"allowedSets":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}]},"status":{"enum":["active","archived"],"type":"string"},"entryCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"approvedCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"checkedCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"listLockMode":{"enum":["on_submit","at_deadline"],"type":"string"},"allowSelfSubmission":{"type":"boolean"},"submissionToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"submissionsCloseAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","name","eventDate","format","allowedSets","status","entryCount","approvedCount","checkedCount","listLockMode","allowSelfSubmission","submissionToken","submissionsCloseAt","createdAt","updatedAt"]},"entry":{"type":"object","properties":{"id":{"type":"string"},"externalId":{"type":"string"},"source":{"enum":["api","manual","self"],"type":"string"},"playerName":{"type":"string"},"riotId":{"anyOf":[{"type":"string"},{"type":"null"}]},"allowDeckPublishing":{"type":"boolean"},"allowNameSharing":{"type":"boolean"},"allowRiotIdSharing":{"type":"boolean"},"submittedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"state":{"enum":["editable","submitted","approved","checked","withdrawn"],"type":"string"},"reviewOutcome":{"anyOf":[{"enum":["ok","issue"],"type":"string"},{"type":"null"}]},"checkedBy":{"anyOf":[{"type":"string"},{"type":"null"}]},"checkedByName":{"anyOf":[{"type":"string"},{"type":"null"}]},"checkedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"approvedByName":{"anyOf":[{"type":"string"},{"type":"null"}]},"approvedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"unlockRequestedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"notes":{"anyOf":[{"type":"string"},{"type":"null"}]},"changeSummary":{"anyOf":[{"type":"object","properties":{"added":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"zone":{"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0}},"required":["name","zone","quantity"]}},"removed":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"zone":{"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0}},"required":["name","zone","quantity"]}},"changed":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"zone":{"type":"string"},"oldQuantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"newQuantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0}},"required":["name","zone","oldQuantity","newQuantity"]}}},"required":["added","removed","changed"]},{"type":"null"}]},"withdrawnAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"claimedUserId":{"anyOf":[{"type":"string"},{"type":"null"}]},"claimedUserName":{"anyOf":[{"type":"string"},{"type":"null"}]},"claimSource":{"anyOf":[{"enum":["judge_manual","self_submit","claim_link"],"type":"string"},{"type":"null"}]},"claimBlocked":{"type":"boolean"},"claimToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"playerMessage":{"anyOf":[{"type":"string"},{"type":"null"}]},"updatedAt":{"type":"string"}},"required":["id","externalId","source","playerName","riotId","allowDeckPublishing","allowNameSharing","allowRiotIdSharing","submittedAt","state","reviewOutcome","checkedBy","checkedByName","checkedAt","approvedByName","approvedAt","unlockRequestedAt","notes","changeSummary","withdrawnAt","claimedUserId","claimedUserName","claimSource","claimBlocked","claimToken","playerMessage","updatedAt"]},"cards":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"sortOrder":{"type":"integer","minimum":0,"maximum":9007199254740991},"rawName":{"type":"string"},"section":{"type":"string"},"zone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow"],"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"matchStatus":{"enum":["matched","ambiguous","unmatched"],"type":"string"},"foundCopies":{"type":"array","items":{"type":"boolean"}},"resolvedCardId":{"anyOf":[{"type":"string"},{"type":"null"}]},"resolvedPrintingId":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["id","sortOrder","rawName","section","zone","quantity","matchStatus","foundCopies","resolvedCardId","resolvedPrintingId"]}},"violations":{"type":"array","items":{"type":"object","properties":{"zone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow","deck"],"type":"string"},"code":{"type":"string"},"message":{"type":"string"},"cardId":{"type":"string"}},"required":["zone","code","message"]}},"typeCounts":{"type":"array","items":{"type":"object","properties":{"cardType":{"type":"string"},"count":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["cardType","count"]}},"domainDistribution":{"type":"array","items":{"type":"object","properties":{"domain":{"type":"string"},"count":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["domain","count"]}},"zoneSuggestions":{"type":"array","items":{"type":"object","properties":{"cardId":{"type":"string"},"cardName":{"type":"string"},"currentZone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow"],"type":"string"},"suggestedZone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow"],"type":"string"}},"required":["cardId","cardName","currentZone","suggestedZone"]}}},"required":["event","entry","cards","violations","typeCounts","domainDistribution","zoneSuggestions"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament or entry not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"409":{"description":"409","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"CONFLICT"},"status":{"const":409},"message":{"type":"string","default":"Entry list is not yet submitted"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/tournaments/{tournamentId}/deck-check/entries/{entryId}/cards/{cardId}/copies/{copyIndex}":{"delete":{"operationId":"tournamentDeckCheckContract.removeCardCopy","tags":["Deck Check"],"parameters":[{"name":"tournamentId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"entryId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"cardId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"copyIndex","in":"path","required":true,"schema":{"type":"integer","minimum":0,"maximum":98}}],"responses":{"204":{"description":"OK","content":{"application/json":{"schema":{"anyOf":[{},{"not":{}}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament, entry, or card not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"409":{"description":"409","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"CONFLICT"},"status":{"const":409},"message":{"type":"string","default":"Entry list is not yet submitted"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/tournaments/{tournamentId}/deck-check/entries/{entryId}/link":{"delete":{"operationId":"tournamentDeckCheckContract.unlinkEntry","tags":["Deck Check"],"parameters":[{"name":"tournamentId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"entryId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"event":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"eventDate":{"anyOf":[{"type":"string"},{"type":"null"}]},"format":{"anyOf":[{"type":"string"},{"type":"null"}]},"allowedSets":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}]},"status":{"enum":["active","archived"],"type":"string"},"entryCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"approvedCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"checkedCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"listLockMode":{"enum":["on_submit","at_deadline"],"type":"string"},"allowSelfSubmission":{"type":"boolean"},"submissionToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"submissionsCloseAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","name","eventDate","format","allowedSets","status","entryCount","approvedCount","checkedCount","listLockMode","allowSelfSubmission","submissionToken","submissionsCloseAt","createdAt","updatedAt"]},"entry":{"type":"object","properties":{"id":{"type":"string"},"externalId":{"type":"string"},"source":{"enum":["api","manual","self"],"type":"string"},"playerName":{"type":"string"},"riotId":{"anyOf":[{"type":"string"},{"type":"null"}]},"allowDeckPublishing":{"type":"boolean"},"allowNameSharing":{"type":"boolean"},"allowRiotIdSharing":{"type":"boolean"},"submittedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"state":{"enum":["editable","submitted","approved","checked","withdrawn"],"type":"string"},"reviewOutcome":{"anyOf":[{"enum":["ok","issue"],"type":"string"},{"type":"null"}]},"checkedBy":{"anyOf":[{"type":"string"},{"type":"null"}]},"checkedByName":{"anyOf":[{"type":"string"},{"type":"null"}]},"checkedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"approvedByName":{"anyOf":[{"type":"string"},{"type":"null"}]},"approvedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"unlockRequestedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"notes":{"anyOf":[{"type":"string"},{"type":"null"}]},"changeSummary":{"anyOf":[{"type":"object","properties":{"added":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"zone":{"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0}},"required":["name","zone","quantity"]}},"removed":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"zone":{"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0}},"required":["name","zone","quantity"]}},"changed":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"zone":{"type":"string"},"oldQuantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"newQuantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0}},"required":["name","zone","oldQuantity","newQuantity"]}}},"required":["added","removed","changed"]},{"type":"null"}]},"withdrawnAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"claimedUserId":{"anyOf":[{"type":"string"},{"type":"null"}]},"claimedUserName":{"anyOf":[{"type":"string"},{"type":"null"}]},"claimSource":{"anyOf":[{"enum":["judge_manual","self_submit","claim_link"],"type":"string"},{"type":"null"}]},"claimBlocked":{"type":"boolean"},"claimToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"playerMessage":{"anyOf":[{"type":"string"},{"type":"null"}]},"updatedAt":{"type":"string"}},"required":["id","externalId","source","playerName","riotId","allowDeckPublishing","allowNameSharing","allowRiotIdSharing","submittedAt","state","reviewOutcome","checkedBy","checkedByName","checkedAt","approvedByName","approvedAt","unlockRequestedAt","notes","changeSummary","withdrawnAt","claimedUserId","claimedUserName","claimSource","claimBlocked","claimToken","playerMessage","updatedAt"]},"cards":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"sortOrder":{"type":"integer","minimum":0,"maximum":9007199254740991},"rawName":{"type":"string"},"section":{"type":"string"},"zone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow"],"type":"string"},"quantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"matchStatus":{"enum":["matched","ambiguous","unmatched"],"type":"string"},"foundCopies":{"type":"array","items":{"type":"boolean"}},"resolvedCardId":{"anyOf":[{"type":"string"},{"type":"null"}]},"resolvedPrintingId":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["id","sortOrder","rawName","section","zone","quantity","matchStatus","foundCopies","resolvedCardId","resolvedPrintingId"]}},"violations":{"type":"array","items":{"type":"object","properties":{"zone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow","deck"],"type":"string"},"code":{"type":"string"},"message":{"type":"string"},"cardId":{"type":"string"}},"required":["zone","code","message"]}},"typeCounts":{"type":"array","items":{"type":"object","properties":{"cardType":{"type":"string"},"count":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["cardType","count"]}},"domainDistribution":{"type":"array","items":{"type":"object","properties":{"domain":{"type":"string"},"count":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["domain","count"]}},"zoneSuggestions":{"type":"array","items":{"type":"object","properties":{"cardId":{"type":"string"},"cardName":{"type":"string"},"currentZone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow"],"type":"string"},"suggestedZone":{"enum":["main","sideboard","legend","champion","runes","battlefield","overflow"],"type":"string"}},"required":["cardId","cardName","currentZone","suggestedZone"]}}},"required":["event","entry","cards","violations","typeCounts","domainDistribution","zoneSuggestions"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament or entry not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/tournaments/{tournamentId}/deck-check/re-resolve":{"post":{"operationId":"tournamentDeckCheckContract.reResolve","tags":["Deck Check"],"parameters":[{"name":"tournamentId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"updatedLines":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["updatedLines"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/tournaments":{"get":{"operationId":"tournamentsContract.list","tags":["Tournaments"],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"status":{"enum":["setup","running","completed","cancelled"],"type":"string"},"host":{"type":"object","properties":{"type":{"enum":["user","organization"],"type":"string"},"userId":{"anyOf":[{"type":"string"},{"type":"null"}]},"orgId":{"anyOf":[{"type":"string"},{"type":"null"}]},"displayName":{"type":"string"},"orgSlug":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["type","userId","orgId","displayName","orgSlug"]},"groupId":{"anyOf":[{"type":"string"},{"type":"null"}]},"groupSlug":{"anyOf":[{"type":"string"},{"type":"null"}]},"groupName":{"anyOf":[{"type":"string"},{"type":"null"}]},"pairingStyle":{"enum":["none","pod","swiss"],"type":"string"},"playMode":{"enum":["1v1","2v2"],"type":"string"},"deckSubmission":{"enum":["none","optional","required"],"type":"string"},"deckFormat":{"anyOf":[{"type":"string"},{"type":"null"}]},"startsAt":{"type":"string"},"endsAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"modules":{"type":"object","properties":{"pairing":{"type":"boolean"},"deckSubmission":{"type":"boolean"}},"required":["pairing","deckSubmission"]},"participantCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"pendingRequestCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"myRoles":{"type":"array","items":{"enum":["host","organizer","judge","participant"],"type":"string"}},"participantPreview":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"image":{"anyOf":[{"type":"string"},{"type":"null"}]},"gravatarHash":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["name","image","gravatarHash"]}},"winner":{"anyOf":[{"type":"object","properties":{"name":{"type":"string"},"legendImageId":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["name","legendImageId"]},{"type":"null"}]},"coverLegends":{"type":"array","items":{"type":"object","properties":{"printingId":{"type":"string"},"imageId":{"type":"string"}},"required":["printingId","imageId"]}},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","name","status","host","groupId","groupSlug","groupName","pairingStyle","playMode","deckSubmission","deckFormat","startsAt","endsAt","modules","participantCount","pendingRequestCount","myRoles","participantPreview","winner","coverLegends","createdAt","updatedAt"]}}},"required":["items"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"post":{"operationId":"tournamentsContract.create","tags":["Tournaments"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string","minLength":1,"maxLength":120},"host":{"anyOf":[{"type":"object","properties":{"type":{"const":"user"}},"required":["type"]},{"type":"object","properties":{"type":{"const":"organization"},"orgId":{"type":"string","format":"uuid"}},"required":["type","orgId"]}]},"pairingStyle":{"enum":["none","pod","swiss"],"type":"string"},"playMode":{"enum":["1v1","2v2"],"type":"string"},"scoringScheme":{"enum":["standard","three_pod_reduced"],"type":"string"},"byePoints":{"type":"integer","minimum":0,"maximum":99},"matchFormat":{"enum":["bo1","bo3"],"type":"string"},"winPoints":{"type":"integer","minimum":0,"maximum":99},"drawPoints":{"type":"integer","minimum":0,"maximum":99},"regionsEnabled":{"type":"boolean"},"deckSubmission":{"enum":["none","optional","required"],"type":"string"},"submissionsCloseAt":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}]},"listLockMode":{"enum":["on_submit","at_deadline"],"type":"string"},"deckFormat":{"anyOf":[{"type":"string","minLength":1},{"type":"null"}]},"allowedSets":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}]},"selfRegistration":{"type":"boolean"},"groupId":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}]},"startsAt":{"type":"string","format":"date-time"},"endsAt":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}]}},"required":["name","host","pairingStyle","deckSubmission","startsAt"]}}}},"responses":{"201":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"status":{"enum":["setup","running","completed","cancelled"],"type":"string"},"host":{"type":"object","properties":{"type":{"enum":["user","organization"],"type":"string"},"userId":{"anyOf":[{"type":"string"},{"type":"null"}]},"orgId":{"anyOf":[{"type":"string"},{"type":"null"}]},"displayName":{"type":"string"},"orgSlug":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["type","userId","orgId","displayName","orgSlug"]},"groupId":{"anyOf":[{"type":"string"},{"type":"null"}]},"groupSlug":{"anyOf":[{"type":"string"},{"type":"null"}]},"groupName":{"anyOf":[{"type":"string"},{"type":"null"}]},"pairingStyle":{"enum":["none","pod","swiss"],"type":"string"},"playMode":{"enum":["1v1","2v2"],"type":"string"},"deckSubmission":{"enum":["none","optional","required"],"type":"string"},"deckFormat":{"anyOf":[{"type":"string"},{"type":"null"}]},"startsAt":{"type":"string"},"endsAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"modules":{"type":"object","properties":{"pairing":{"type":"boolean"},"deckSubmission":{"type":"boolean"}},"required":["pairing","deckSubmission"]},"participantCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"pendingRequestCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"myRoles":{"type":"array","items":{"enum":["host","organizer","judge","participant"],"type":"string"}},"participantPreview":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"image":{"anyOf":[{"type":"string"},{"type":"null"}]},"gravatarHash":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["name","image","gravatarHash"]}},"winner":{"anyOf":[{"type":"object","properties":{"name":{"type":"string"},"legendImageId":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["name","legendImageId"]},{"type":"null"}]},"coverLegends":{"type":"array","items":{"type":"object","properties":{"printingId":{"type":"string"},"imageId":{"type":"string"}},"required":["printingId","imageId"]}},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"myDeckEntry":{"anyOf":[{"type":"object","properties":{"id":{"type":"string"},"state":{"enum":["editable","submitted","approved","checked","withdrawn"],"type":"string"},"reviewOutcome":{"anyOf":[{"enum":["ok","issue"],"type":"string"},{"type":"null"}]},"unlockRequested":{"type":"boolean"},"hasPlayerMessage":{"type":"boolean"}},"required":["id","state","reviewOutcome","unlockRequested","hasPlayerMessage"]},{"type":"null"}]},"currentRound":{"type":"integer","minimum":0,"maximum":9007199254740991},"scoringScheme":{"enum":["standard","three_pod_reduced"],"type":"string"},"byePoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"matchFormat":{"enum":["bo1","bo3"],"type":"string"},"winPoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"drawPoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"regionsEnabled":{"type":"boolean"},"deckPhase":{"enum":["open","closed","locked"],"type":"string"},"submissionsCloseAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"listLockMode":{"enum":["on_submit","at_deadline"],"type":"string"},"allowedSets":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}]},"selfRegistration":{"type":"boolean"},"reportToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"followToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"submissionToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"organizerInviteToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"judgeInviteToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"staff":{"type":"array","items":{"type":"object","properties":{"userId":{"type":"string"},"name":{"anyOf":[{"type":"string"},{"type":"null"}]},"role":{"enum":["organizer","judge"],"type":"string"},"source":{"enum":["grant","organization"],"type":"string"},"orgRole":{"anyOf":[{"enum":["owner","manager","judge"],"type":"string"},{"type":"null"}]},"addedAt":{"type":"string"}},"required":["userId","name","role","source","orgRole","addedAt"]}},"hasRounds":{"type":"boolean"}},"required":["id","name","status","host","groupId","groupSlug","groupName","pairingStyle","playMode","deckSubmission","deckFormat","startsAt","endsAt","modules","participantCount","pendingRequestCount","myRoles","participantPreview","winner","coverLegends","createdAt","updatedAt","myDeckEntry","currentRound","scoringScheme","byePoints","matchFormat","winPoints","drawPoints","regionsEnabled","deckPhase","submissionsCloseAt","listLockMode","allowedSets","selfRegistration","reportToken","followToken","submissionToken","organizerInviteToken","judgeInviteToken","staff","hasRounds"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Host organization or group not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"422":{"description":"422","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"VALIDATION_ERROR"},"status":{"const":422},"message":{"type":"string","default":"Invalid settings"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/friend-groups/{slug}/tournaments":{"get":{"operationId":"tournamentsContract.listForGroup","tags":["Tournaments"],"parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string","minLength":3,"maxLength":30,"pattern":"^[a-z0-9][a-z0-9-]+$"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"status":{"enum":["setup","running","completed","cancelled"],"type":"string"},"host":{"type":"object","properties":{"type":{"enum":["user","organization"],"type":"string"},"userId":{"anyOf":[{"type":"string"},{"type":"null"}]},"orgId":{"anyOf":[{"type":"string"},{"type":"null"}]},"displayName":{"type":"string"},"orgSlug":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["type","userId","orgId","displayName","orgSlug"]},"groupId":{"anyOf":[{"type":"string"},{"type":"null"}]},"groupSlug":{"anyOf":[{"type":"string"},{"type":"null"}]},"groupName":{"anyOf":[{"type":"string"},{"type":"null"}]},"pairingStyle":{"enum":["none","pod","swiss"],"type":"string"},"playMode":{"enum":["1v1","2v2"],"type":"string"},"deckSubmission":{"enum":["none","optional","required"],"type":"string"},"deckFormat":{"anyOf":[{"type":"string"},{"type":"null"}]},"startsAt":{"type":"string"},"endsAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"modules":{"type":"object","properties":{"pairing":{"type":"boolean"},"deckSubmission":{"type":"boolean"}},"required":["pairing","deckSubmission"]},"participantCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"pendingRequestCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"myRoles":{"type":"array","items":{"enum":["host","organizer","judge","participant"],"type":"string"}},"participantPreview":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"image":{"anyOf":[{"type":"string"},{"type":"null"}]},"gravatarHash":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["name","image","gravatarHash"]}},"winner":{"anyOf":[{"type":"object","properties":{"name":{"type":"string"},"legendImageId":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["name","legendImageId"]},{"type":"null"}]},"coverLegends":{"type":"array","items":{"type":"object","properties":{"printingId":{"type":"string"},"imageId":{"type":"string"}},"required":["printingId","imageId"]}},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","name","status","host","groupId","groupSlug","groupName","pairingStyle","playMode","deckSubmission","deckFormat","startsAt","endsAt","modules","participantCount","pendingRequestCount","myRoles","participantPreview","winner","coverLegends","createdAt","updatedAt"]}}},"required":["items"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Group not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/tournaments/{id}":{"get":{"operationId":"tournamentsContract.get","tags":["Tournaments"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"status":{"enum":["setup","running","completed","cancelled"],"type":"string"},"host":{"type":"object","properties":{"type":{"enum":["user","organization"],"type":"string"},"userId":{"anyOf":[{"type":"string"},{"type":"null"}]},"orgId":{"anyOf":[{"type":"string"},{"type":"null"}]},"displayName":{"type":"string"},"orgSlug":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["type","userId","orgId","displayName","orgSlug"]},"groupId":{"anyOf":[{"type":"string"},{"type":"null"}]},"groupSlug":{"anyOf":[{"type":"string"},{"type":"null"}]},"groupName":{"anyOf":[{"type":"string"},{"type":"null"}]},"pairingStyle":{"enum":["none","pod","swiss"],"type":"string"},"playMode":{"enum":["1v1","2v2"],"type":"string"},"deckSubmission":{"enum":["none","optional","required"],"type":"string"},"deckFormat":{"anyOf":[{"type":"string"},{"type":"null"}]},"startsAt":{"type":"string"},"endsAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"modules":{"type":"object","properties":{"pairing":{"type":"boolean"},"deckSubmission":{"type":"boolean"}},"required":["pairing","deckSubmission"]},"participantCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"pendingRequestCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"myRoles":{"type":"array","items":{"enum":["host","organizer","judge","participant"],"type":"string"}},"participantPreview":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"image":{"anyOf":[{"type":"string"},{"type":"null"}]},"gravatarHash":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["name","image","gravatarHash"]}},"winner":{"anyOf":[{"type":"object","properties":{"name":{"type":"string"},"legendImageId":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["name","legendImageId"]},{"type":"null"}]},"coverLegends":{"type":"array","items":{"type":"object","properties":{"printingId":{"type":"string"},"imageId":{"type":"string"}},"required":["printingId","imageId"]}},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"myDeckEntry":{"anyOf":[{"type":"object","properties":{"id":{"type":"string"},"state":{"enum":["editable","submitted","approved","checked","withdrawn"],"type":"string"},"reviewOutcome":{"anyOf":[{"enum":["ok","issue"],"type":"string"},{"type":"null"}]},"unlockRequested":{"type":"boolean"},"hasPlayerMessage":{"type":"boolean"}},"required":["id","state","reviewOutcome","unlockRequested","hasPlayerMessage"]},{"type":"null"}]},"currentRound":{"type":"integer","minimum":0,"maximum":9007199254740991},"scoringScheme":{"enum":["standard","three_pod_reduced"],"type":"string"},"byePoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"matchFormat":{"enum":["bo1","bo3"],"type":"string"},"winPoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"drawPoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"regionsEnabled":{"type":"boolean"},"deckPhase":{"enum":["open","closed","locked"],"type":"string"},"submissionsCloseAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"listLockMode":{"enum":["on_submit","at_deadline"],"type":"string"},"allowedSets":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}]},"selfRegistration":{"type":"boolean"},"reportToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"followToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"submissionToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"organizerInviteToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"judgeInviteToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"staff":{"type":"array","items":{"type":"object","properties":{"userId":{"type":"string"},"name":{"anyOf":[{"type":"string"},{"type":"null"}]},"role":{"enum":["organizer","judge"],"type":"string"},"source":{"enum":["grant","organization"],"type":"string"},"orgRole":{"anyOf":[{"enum":["owner","manager","judge"],"type":"string"},{"type":"null"}]},"addedAt":{"type":"string"}},"required":["userId","name","role","source","orgRole","addedAt"]}},"hasRounds":{"type":"boolean"}},"required":["id","name","status","host","groupId","groupSlug","groupName","pairingStyle","playMode","deckSubmission","deckFormat","startsAt","endsAt","modules","participantCount","pendingRequestCount","myRoles","participantPreview","winner","coverLegends","createdAt","updatedAt","myDeckEntry","currentRound","scoringScheme","byePoints","matchFormat","winPoints","drawPoints","regionsEnabled","deckPhase","submissionsCloseAt","listLockMode","allowedSets","selfRegistration","reportToken","followToken","submissionToken","organizerInviteToken","judgeInviteToken","staff","hasRounds"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"patch":{"operationId":"tournamentsContract.update","tags":["Tournaments"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"requestBody":{"required":false,"content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string","minLength":1,"maxLength":120},"status":{"enum":["setup","running","completed","cancelled"],"type":"string"},"host":{"anyOf":[{"type":"object","properties":{"type":{"const":"user"}},"required":["type"]},{"type":"object","properties":{"type":{"const":"organization"},"orgId":{"type":"string","format":"uuid"}},"required":["type","orgId"]}]},"pairingStyle":{"enum":["none","pod","swiss"],"type":"string"},"playMode":{"enum":["1v1","2v2"],"type":"string"},"startsAt":{"type":"string","format":"date-time"},"endsAt":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}]},"scoringScheme":{"enum":["standard","three_pod_reduced"],"type":"string"},"byePoints":{"type":"integer","minimum":0,"maximum":99},"matchFormat":{"enum":["bo1","bo3"],"type":"string"},"winPoints":{"type":"integer","minimum":0,"maximum":99},"drawPoints":{"type":"integer","minimum":0,"maximum":99},"regionsEnabled":{"type":"boolean"},"deckSubmission":{"enum":["none","optional","required"],"type":"string"},"submissionsCloseAt":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}]},"listLockMode":{"enum":["on_submit","at_deadline"],"type":"string"},"deckFormat":{"anyOf":[{"type":"string","minLength":1},{"type":"null"}]},"allowedSets":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}]},"selfRegistration":{"type":"boolean"},"groupId":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}]}}}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"status":{"enum":["setup","running","completed","cancelled"],"type":"string"},"host":{"type":"object","properties":{"type":{"enum":["user","organization"],"type":"string"},"userId":{"anyOf":[{"type":"string"},{"type":"null"}]},"orgId":{"anyOf":[{"type":"string"},{"type":"null"}]},"displayName":{"type":"string"},"orgSlug":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["type","userId","orgId","displayName","orgSlug"]},"groupId":{"anyOf":[{"type":"string"},{"type":"null"}]},"groupSlug":{"anyOf":[{"type":"string"},{"type":"null"}]},"groupName":{"anyOf":[{"type":"string"},{"type":"null"}]},"pairingStyle":{"enum":["none","pod","swiss"],"type":"string"},"playMode":{"enum":["1v1","2v2"],"type":"string"},"deckSubmission":{"enum":["none","optional","required"],"type":"string"},"deckFormat":{"anyOf":[{"type":"string"},{"type":"null"}]},"startsAt":{"type":"string"},"endsAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"modules":{"type":"object","properties":{"pairing":{"type":"boolean"},"deckSubmission":{"type":"boolean"}},"required":["pairing","deckSubmission"]},"participantCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"pendingRequestCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"myRoles":{"type":"array","items":{"enum":["host","organizer","judge","participant"],"type":"string"}},"participantPreview":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"image":{"anyOf":[{"type":"string"},{"type":"null"}]},"gravatarHash":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["name","image","gravatarHash"]}},"winner":{"anyOf":[{"type":"object","properties":{"name":{"type":"string"},"legendImageId":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["name","legendImageId"]},{"type":"null"}]},"coverLegends":{"type":"array","items":{"type":"object","properties":{"printingId":{"type":"string"},"imageId":{"type":"string"}},"required":["printingId","imageId"]}},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"myDeckEntry":{"anyOf":[{"type":"object","properties":{"id":{"type":"string"},"state":{"enum":["editable","submitted","approved","checked","withdrawn"],"type":"string"},"reviewOutcome":{"anyOf":[{"enum":["ok","issue"],"type":"string"},{"type":"null"}]},"unlockRequested":{"type":"boolean"},"hasPlayerMessage":{"type":"boolean"}},"required":["id","state","reviewOutcome","unlockRequested","hasPlayerMessage"]},{"type":"null"}]},"currentRound":{"type":"integer","minimum":0,"maximum":9007199254740991},"scoringScheme":{"enum":["standard","three_pod_reduced"],"type":"string"},"byePoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"matchFormat":{"enum":["bo1","bo3"],"type":"string"},"winPoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"drawPoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"regionsEnabled":{"type":"boolean"},"deckPhase":{"enum":["open","closed","locked"],"type":"string"},"submissionsCloseAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"listLockMode":{"enum":["on_submit","at_deadline"],"type":"string"},"allowedSets":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}]},"selfRegistration":{"type":"boolean"},"reportToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"followToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"submissionToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"organizerInviteToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"judgeInviteToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"staff":{"type":"array","items":{"type":"object","properties":{"userId":{"type":"string"},"name":{"anyOf":[{"type":"string"},{"type":"null"}]},"role":{"enum":["organizer","judge"],"type":"string"},"source":{"enum":["grant","organization"],"type":"string"},"orgRole":{"anyOf":[{"enum":["owner","manager","judge"],"type":"string"},{"type":"null"}]},"addedAt":{"type":"string"}},"required":["userId","name","role","source","orgRole","addedAt"]}},"hasRounds":{"type":"boolean"}},"required":["id","name","status","host","groupId","groupSlug","groupName","pairingStyle","playMode","deckSubmission","deckFormat","startsAt","endsAt","modules","participantCount","pendingRequestCount","myRoles","participantPreview","winner","coverLegends","createdAt","updatedAt","myDeckEntry","currentRound","scoringScheme","byePoints","matchFormat","winPoints","drawPoints","regionsEnabled","deckPhase","submissionsCloseAt","listLockMode","allowedSets","selfRegistration","reportToken","followToken","submissionToken","organizerInviteToken","judgeInviteToken","staff","hasRounds"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"409":{"description":"409","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"CONFLICT"},"status":{"const":409},"message":{"type":"string","default":"A cancelled tournament cannot be edited"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"422":{"description":"422","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"VALIDATION_ERROR"},"status":{"const":422},"message":{"type":"string","default":"Invalid settings"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"delete":{"operationId":"tournamentsContract.remove","tags":["Tournaments"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"204":{"description":"OK","content":{"application/json":{"schema":{"anyOf":[{},{"not":{}}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/tournaments/{id}/cancel":{"post":{"operationId":"tournamentsContract.cancel","tags":["Tournaments"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"status":{"enum":["setup","running","completed","cancelled"],"type":"string"},"host":{"type":"object","properties":{"type":{"enum":["user","organization"],"type":"string"},"userId":{"anyOf":[{"type":"string"},{"type":"null"}]},"orgId":{"anyOf":[{"type":"string"},{"type":"null"}]},"displayName":{"type":"string"},"orgSlug":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["type","userId","orgId","displayName","orgSlug"]},"groupId":{"anyOf":[{"type":"string"},{"type":"null"}]},"groupSlug":{"anyOf":[{"type":"string"},{"type":"null"}]},"groupName":{"anyOf":[{"type":"string"},{"type":"null"}]},"pairingStyle":{"enum":["none","pod","swiss"],"type":"string"},"playMode":{"enum":["1v1","2v2"],"type":"string"},"deckSubmission":{"enum":["none","optional","required"],"type":"string"},"deckFormat":{"anyOf":[{"type":"string"},{"type":"null"}]},"startsAt":{"type":"string"},"endsAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"modules":{"type":"object","properties":{"pairing":{"type":"boolean"},"deckSubmission":{"type":"boolean"}},"required":["pairing","deckSubmission"]},"participantCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"pendingRequestCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"myRoles":{"type":"array","items":{"enum":["host","organizer","judge","participant"],"type":"string"}},"participantPreview":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"image":{"anyOf":[{"type":"string"},{"type":"null"}]},"gravatarHash":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["name","image","gravatarHash"]}},"winner":{"anyOf":[{"type":"object","properties":{"name":{"type":"string"},"legendImageId":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["name","legendImageId"]},{"type":"null"}]},"coverLegends":{"type":"array","items":{"type":"object","properties":{"printingId":{"type":"string"},"imageId":{"type":"string"}},"required":["printingId","imageId"]}},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"myDeckEntry":{"anyOf":[{"type":"object","properties":{"id":{"type":"string"},"state":{"enum":["editable","submitted","approved","checked","withdrawn"],"type":"string"},"reviewOutcome":{"anyOf":[{"enum":["ok","issue"],"type":"string"},{"type":"null"}]},"unlockRequested":{"type":"boolean"},"hasPlayerMessage":{"type":"boolean"}},"required":["id","state","reviewOutcome","unlockRequested","hasPlayerMessage"]},{"type":"null"}]},"currentRound":{"type":"integer","minimum":0,"maximum":9007199254740991},"scoringScheme":{"enum":["standard","three_pod_reduced"],"type":"string"},"byePoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"matchFormat":{"enum":["bo1","bo3"],"type":"string"},"winPoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"drawPoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"regionsEnabled":{"type":"boolean"},"deckPhase":{"enum":["open","closed","locked"],"type":"string"},"submissionsCloseAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"listLockMode":{"enum":["on_submit","at_deadline"],"type":"string"},"allowedSets":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}]},"selfRegistration":{"type":"boolean"},"reportToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"followToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"submissionToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"organizerInviteToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"judgeInviteToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"staff":{"type":"array","items":{"type":"object","properties":{"userId":{"type":"string"},"name":{"anyOf":[{"type":"string"},{"type":"null"}]},"role":{"enum":["organizer","judge"],"type":"string"},"source":{"enum":["grant","organization"],"type":"string"},"orgRole":{"anyOf":[{"enum":["owner","manager","judge"],"type":"string"},{"type":"null"}]},"addedAt":{"type":"string"}},"required":["userId","name","role","source","orgRole","addedAt"]}},"hasRounds":{"type":"boolean"}},"required":["id","name","status","host","groupId","groupSlug","groupName","pairingStyle","playMode","deckSubmission","deckFormat","startsAt","endsAt","modules","participantCount","pendingRequestCount","myRoles","participantPreview","winner","coverLegends","createdAt","updatedAt","myDeckEntry","currentRound","scoringScheme","byePoints","matchFormat","winPoints","drawPoints","regionsEnabled","deckPhase","submissionsCloseAt","listLockMode","allowedSets","selfRegistration","reportToken","followToken","submissionToken","organizerInviteToken","judgeInviteToken","staff","hasRounds"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/tournaments/{id}/submission-token":{"post":{"operationId":"tournamentsContract.enableSubmissionToken","tags":["Tournaments"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"status":{"enum":["setup","running","completed","cancelled"],"type":"string"},"host":{"type":"object","properties":{"type":{"enum":["user","organization"],"type":"string"},"userId":{"anyOf":[{"type":"string"},{"type":"null"}]},"orgId":{"anyOf":[{"type":"string"},{"type":"null"}]},"displayName":{"type":"string"},"orgSlug":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["type","userId","orgId","displayName","orgSlug"]},"groupId":{"anyOf":[{"type":"string"},{"type":"null"}]},"groupSlug":{"anyOf":[{"type":"string"},{"type":"null"}]},"groupName":{"anyOf":[{"type":"string"},{"type":"null"}]},"pairingStyle":{"enum":["none","pod","swiss"],"type":"string"},"playMode":{"enum":["1v1","2v2"],"type":"string"},"deckSubmission":{"enum":["none","optional","required"],"type":"string"},"deckFormat":{"anyOf":[{"type":"string"},{"type":"null"}]},"startsAt":{"type":"string"},"endsAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"modules":{"type":"object","properties":{"pairing":{"type":"boolean"},"deckSubmission":{"type":"boolean"}},"required":["pairing","deckSubmission"]},"participantCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"pendingRequestCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"myRoles":{"type":"array","items":{"enum":["host","organizer","judge","participant"],"type":"string"}},"participantPreview":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"image":{"anyOf":[{"type":"string"},{"type":"null"}]},"gravatarHash":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["name","image","gravatarHash"]}},"winner":{"anyOf":[{"type":"object","properties":{"name":{"type":"string"},"legendImageId":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["name","legendImageId"]},{"type":"null"}]},"coverLegends":{"type":"array","items":{"type":"object","properties":{"printingId":{"type":"string"},"imageId":{"type":"string"}},"required":["printingId","imageId"]}},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"myDeckEntry":{"anyOf":[{"type":"object","properties":{"id":{"type":"string"},"state":{"enum":["editable","submitted","approved","checked","withdrawn"],"type":"string"},"reviewOutcome":{"anyOf":[{"enum":["ok","issue"],"type":"string"},{"type":"null"}]},"unlockRequested":{"type":"boolean"},"hasPlayerMessage":{"type":"boolean"}},"required":["id","state","reviewOutcome","unlockRequested","hasPlayerMessage"]},{"type":"null"}]},"currentRound":{"type":"integer","minimum":0,"maximum":9007199254740991},"scoringScheme":{"enum":["standard","three_pod_reduced"],"type":"string"},"byePoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"matchFormat":{"enum":["bo1","bo3"],"type":"string"},"winPoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"drawPoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"regionsEnabled":{"type":"boolean"},"deckPhase":{"enum":["open","closed","locked"],"type":"string"},"submissionsCloseAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"listLockMode":{"enum":["on_submit","at_deadline"],"type":"string"},"allowedSets":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}]},"selfRegistration":{"type":"boolean"},"reportToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"followToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"submissionToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"organizerInviteToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"judgeInviteToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"staff":{"type":"array","items":{"type":"object","properties":{"userId":{"type":"string"},"name":{"anyOf":[{"type":"string"},{"type":"null"}]},"role":{"enum":["organizer","judge"],"type":"string"},"source":{"enum":["grant","organization"],"type":"string"},"orgRole":{"anyOf":[{"enum":["owner","manager","judge"],"type":"string"},{"type":"null"}]},"addedAt":{"type":"string"}},"required":["userId","name","role","source","orgRole","addedAt"]}},"hasRounds":{"type":"boolean"}},"required":["id","name","status","host","groupId","groupSlug","groupName","pairingStyle","playMode","deckSubmission","deckFormat","startsAt","endsAt","modules","participantCount","pendingRequestCount","myRoles","participantPreview","winner","coverLegends","createdAt","updatedAt","myDeckEntry","currentRound","scoringScheme","byePoints","matchFormat","winPoints","drawPoints","regionsEnabled","deckPhase","submissionsCloseAt","listLockMode","allowedSets","selfRegistration","reportToken","followToken","submissionToken","organizerInviteToken","judgeInviteToken","staff","hasRounds"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"delete":{"operationId":"tournamentsContract.disableSubmissionToken","tags":["Tournaments"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"status":{"enum":["setup","running","completed","cancelled"],"type":"string"},"host":{"type":"object","properties":{"type":{"enum":["user","organization"],"type":"string"},"userId":{"anyOf":[{"type":"string"},{"type":"null"}]},"orgId":{"anyOf":[{"type":"string"},{"type":"null"}]},"displayName":{"type":"string"},"orgSlug":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["type","userId","orgId","displayName","orgSlug"]},"groupId":{"anyOf":[{"type":"string"},{"type":"null"}]},"groupSlug":{"anyOf":[{"type":"string"},{"type":"null"}]},"groupName":{"anyOf":[{"type":"string"},{"type":"null"}]},"pairingStyle":{"enum":["none","pod","swiss"],"type":"string"},"playMode":{"enum":["1v1","2v2"],"type":"string"},"deckSubmission":{"enum":["none","optional","required"],"type":"string"},"deckFormat":{"anyOf":[{"type":"string"},{"type":"null"}]},"startsAt":{"type":"string"},"endsAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"modules":{"type":"object","properties":{"pairing":{"type":"boolean"},"deckSubmission":{"type":"boolean"}},"required":["pairing","deckSubmission"]},"participantCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"pendingRequestCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"myRoles":{"type":"array","items":{"enum":["host","organizer","judge","participant"],"type":"string"}},"participantPreview":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"image":{"anyOf":[{"type":"string"},{"type":"null"}]},"gravatarHash":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["name","image","gravatarHash"]}},"winner":{"anyOf":[{"type":"object","properties":{"name":{"type":"string"},"legendImageId":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["name","legendImageId"]},{"type":"null"}]},"coverLegends":{"type":"array","items":{"type":"object","properties":{"printingId":{"type":"string"},"imageId":{"type":"string"}},"required":["printingId","imageId"]}},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"myDeckEntry":{"anyOf":[{"type":"object","properties":{"id":{"type":"string"},"state":{"enum":["editable","submitted","approved","checked","withdrawn"],"type":"string"},"reviewOutcome":{"anyOf":[{"enum":["ok","issue"],"type":"string"},{"type":"null"}]},"unlockRequested":{"type":"boolean"},"hasPlayerMessage":{"type":"boolean"}},"required":["id","state","reviewOutcome","unlockRequested","hasPlayerMessage"]},{"type":"null"}]},"currentRound":{"type":"integer","minimum":0,"maximum":9007199254740991},"scoringScheme":{"enum":["standard","three_pod_reduced"],"type":"string"},"byePoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"matchFormat":{"enum":["bo1","bo3"],"type":"string"},"winPoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"drawPoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"regionsEnabled":{"type":"boolean"},"deckPhase":{"enum":["open","closed","locked"],"type":"string"},"submissionsCloseAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"listLockMode":{"enum":["on_submit","at_deadline"],"type":"string"},"allowedSets":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}]},"selfRegistration":{"type":"boolean"},"reportToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"followToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"submissionToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"organizerInviteToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"judgeInviteToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"staff":{"type":"array","items":{"type":"object","properties":{"userId":{"type":"string"},"name":{"anyOf":[{"type":"string"},{"type":"null"}]},"role":{"enum":["organizer","judge"],"type":"string"},"source":{"enum":["grant","organization"],"type":"string"},"orgRole":{"anyOf":[{"enum":["owner","manager","judge"],"type":"string"},{"type":"null"}]},"addedAt":{"type":"string"}},"required":["userId","name","role","source","orgRole","addedAt"]}},"hasRounds":{"type":"boolean"}},"required":["id","name","status","host","groupId","groupSlug","groupName","pairingStyle","playMode","deckSubmission","deckFormat","startsAt","endsAt","modules","participantCount","pendingRequestCount","myRoles","participantPreview","winner","coverLegends","createdAt","updatedAt","myDeckEntry","currentRound","scoringScheme","byePoints","matchFormat","winPoints","drawPoints","regionsEnabled","deckPhase","submissionsCloseAt","listLockMode","allowedSets","selfRegistration","reportToken","followToken","submissionToken","organizerInviteToken","judgeInviteToken","staff","hasRounds"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/tournaments/{id}/staff":{"get":{"operationId":"tournamentsContract.listStaff","tags":["Tournaments"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"userId":{"type":"string"},"name":{"anyOf":[{"type":"string"},{"type":"null"}]},"role":{"enum":["organizer","judge"],"type":"string"},"source":{"enum":["grant","organization"],"type":"string"},"orgRole":{"anyOf":[{"enum":["owner","manager","judge"],"type":"string"},{"type":"null"}]},"addedAt":{"type":"string"}},"required":["userId","name","role","source","orgRole","addedAt"]}}},"required":["items"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"post":{"operationId":"tournamentsContract.addStaff","tags":["Tournaments"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"userId":{"type":"string","minLength":1},"role":{"enum":["organizer","judge"],"type":"string"}},"required":["userId","role"]}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"userId":{"type":"string"},"name":{"anyOf":[{"type":"string"},{"type":"null"}]},"role":{"enum":["organizer","judge"],"type":"string"},"source":{"enum":["grant","organization"],"type":"string"},"orgRole":{"anyOf":[{"enum":["owner","manager","judge"],"type":"string"},{"type":"null"}]},"addedAt":{"type":"string"}},"required":["userId","name","role","source","orgRole","addedAt"]}}},"required":["items"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/tournaments/{id}/staff/candidates":{"get":{"operationId":"tournamentsContract.listStaffCandidates","tags":["Tournaments"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"userId":{"type":"string"},"name":{"anyOf":[{"type":"string"},{"type":"null"}]},"source":{"enum":["group","participant"],"type":"string"}},"required":["userId","name","source"]}}},"required":["items"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/tournaments/{id}/staff/{userId}/{role}":{"delete":{"operationId":"tournamentsContract.removeStaff","tags":["Tournaments"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"userId","in":"path","required":true,"schema":{"type":"string","minLength":1}},{"name":"role","in":"path","required":true,"schema":{"enum":["organizer","judge"],"type":"string"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"userId":{"type":"string"},"name":{"anyOf":[{"type":"string"},{"type":"null"}]},"role":{"enum":["organizer","judge"],"type":"string"},"source":{"enum":["grant","organization"],"type":"string"},"orgRole":{"anyOf":[{"enum":["owner","manager","judge"],"type":"string"},{"type":"null"}]},"addedAt":{"type":"string"}},"required":["userId","name","role","source","orgRole","addedAt"]}}},"required":["items"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/tournaments/{id}/staff-invite":{"post":{"operationId":"tournamentsContract.enableStaffInvite","tags":["Tournaments"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"role":{"enum":["organizer","judge"],"type":"string"}},"required":["role"]}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"status":{"enum":["setup","running","completed","cancelled"],"type":"string"},"host":{"type":"object","properties":{"type":{"enum":["user","organization"],"type":"string"},"userId":{"anyOf":[{"type":"string"},{"type":"null"}]},"orgId":{"anyOf":[{"type":"string"},{"type":"null"}]},"displayName":{"type":"string"},"orgSlug":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["type","userId","orgId","displayName","orgSlug"]},"groupId":{"anyOf":[{"type":"string"},{"type":"null"}]},"groupSlug":{"anyOf":[{"type":"string"},{"type":"null"}]},"groupName":{"anyOf":[{"type":"string"},{"type":"null"}]},"pairingStyle":{"enum":["none","pod","swiss"],"type":"string"},"playMode":{"enum":["1v1","2v2"],"type":"string"},"deckSubmission":{"enum":["none","optional","required"],"type":"string"},"deckFormat":{"anyOf":[{"type":"string"},{"type":"null"}]},"startsAt":{"type":"string"},"endsAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"modules":{"type":"object","properties":{"pairing":{"type":"boolean"},"deckSubmission":{"type":"boolean"}},"required":["pairing","deckSubmission"]},"participantCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"pendingRequestCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"myRoles":{"type":"array","items":{"enum":["host","organizer","judge","participant"],"type":"string"}},"participantPreview":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"image":{"anyOf":[{"type":"string"},{"type":"null"}]},"gravatarHash":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["name","image","gravatarHash"]}},"winner":{"anyOf":[{"type":"object","properties":{"name":{"type":"string"},"legendImageId":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["name","legendImageId"]},{"type":"null"}]},"coverLegends":{"type":"array","items":{"type":"object","properties":{"printingId":{"type":"string"},"imageId":{"type":"string"}},"required":["printingId","imageId"]}},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"myDeckEntry":{"anyOf":[{"type":"object","properties":{"id":{"type":"string"},"state":{"enum":["editable","submitted","approved","checked","withdrawn"],"type":"string"},"reviewOutcome":{"anyOf":[{"enum":["ok","issue"],"type":"string"},{"type":"null"}]},"unlockRequested":{"type":"boolean"},"hasPlayerMessage":{"type":"boolean"}},"required":["id","state","reviewOutcome","unlockRequested","hasPlayerMessage"]},{"type":"null"}]},"currentRound":{"type":"integer","minimum":0,"maximum":9007199254740991},"scoringScheme":{"enum":["standard","three_pod_reduced"],"type":"string"},"byePoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"matchFormat":{"enum":["bo1","bo3"],"type":"string"},"winPoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"drawPoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"regionsEnabled":{"type":"boolean"},"deckPhase":{"enum":["open","closed","locked"],"type":"string"},"submissionsCloseAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"listLockMode":{"enum":["on_submit","at_deadline"],"type":"string"},"allowedSets":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}]},"selfRegistration":{"type":"boolean"},"reportToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"followToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"submissionToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"organizerInviteToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"judgeInviteToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"staff":{"type":"array","items":{"type":"object","properties":{"userId":{"type":"string"},"name":{"anyOf":[{"type":"string"},{"type":"null"}]},"role":{"enum":["organizer","judge"],"type":"string"},"source":{"enum":["grant","organization"],"type":"string"},"orgRole":{"anyOf":[{"enum":["owner","manager","judge"],"type":"string"},{"type":"null"}]},"addedAt":{"type":"string"}},"required":["userId","name","role","source","orgRole","addedAt"]}},"hasRounds":{"type":"boolean"}},"required":["id","name","status","host","groupId","groupSlug","groupName","pairingStyle","playMode","deckSubmission","deckFormat","startsAt","endsAt","modules","participantCount","pendingRequestCount","myRoles","participantPreview","winner","coverLegends","createdAt","updatedAt","myDeckEntry","currentRound","scoringScheme","byePoints","matchFormat","winPoints","drawPoints","regionsEnabled","deckPhase","submissionsCloseAt","listLockMode","allowedSets","selfRegistration","reportToken","followToken","submissionToken","organizerInviteToken","judgeInviteToken","staff","hasRounds"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/tournaments/{id}/staff-invite/{role}":{"delete":{"operationId":"tournamentsContract.disableStaffInvite","tags":["Tournaments"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"role","in":"path","required":true,"schema":{"enum":["organizer","judge"],"type":"string"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"status":{"enum":["setup","running","completed","cancelled"],"type":"string"},"host":{"type":"object","properties":{"type":{"enum":["user","organization"],"type":"string"},"userId":{"anyOf":[{"type":"string"},{"type":"null"}]},"orgId":{"anyOf":[{"type":"string"},{"type":"null"}]},"displayName":{"type":"string"},"orgSlug":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["type","userId","orgId","displayName","orgSlug"]},"groupId":{"anyOf":[{"type":"string"},{"type":"null"}]},"groupSlug":{"anyOf":[{"type":"string"},{"type":"null"}]},"groupName":{"anyOf":[{"type":"string"},{"type":"null"}]},"pairingStyle":{"enum":["none","pod","swiss"],"type":"string"},"playMode":{"enum":["1v1","2v2"],"type":"string"},"deckSubmission":{"enum":["none","optional","required"],"type":"string"},"deckFormat":{"anyOf":[{"type":"string"},{"type":"null"}]},"startsAt":{"type":"string"},"endsAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"modules":{"type":"object","properties":{"pairing":{"type":"boolean"},"deckSubmission":{"type":"boolean"}},"required":["pairing","deckSubmission"]},"participantCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"pendingRequestCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"myRoles":{"type":"array","items":{"enum":["host","organizer","judge","participant"],"type":"string"}},"participantPreview":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"image":{"anyOf":[{"type":"string"},{"type":"null"}]},"gravatarHash":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["name","image","gravatarHash"]}},"winner":{"anyOf":[{"type":"object","properties":{"name":{"type":"string"},"legendImageId":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["name","legendImageId"]},{"type":"null"}]},"coverLegends":{"type":"array","items":{"type":"object","properties":{"printingId":{"type":"string"},"imageId":{"type":"string"}},"required":["printingId","imageId"]}},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"myDeckEntry":{"anyOf":[{"type":"object","properties":{"id":{"type":"string"},"state":{"enum":["editable","submitted","approved","checked","withdrawn"],"type":"string"},"reviewOutcome":{"anyOf":[{"enum":["ok","issue"],"type":"string"},{"type":"null"}]},"unlockRequested":{"type":"boolean"},"hasPlayerMessage":{"type":"boolean"}},"required":["id","state","reviewOutcome","unlockRequested","hasPlayerMessage"]},{"type":"null"}]},"currentRound":{"type":"integer","minimum":0,"maximum":9007199254740991},"scoringScheme":{"enum":["standard","three_pod_reduced"],"type":"string"},"byePoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"matchFormat":{"enum":["bo1","bo3"],"type":"string"},"winPoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"drawPoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"regionsEnabled":{"type":"boolean"},"deckPhase":{"enum":["open","closed","locked"],"type":"string"},"submissionsCloseAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"listLockMode":{"enum":["on_submit","at_deadline"],"type":"string"},"allowedSets":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}]},"selfRegistration":{"type":"boolean"},"reportToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"followToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"submissionToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"organizerInviteToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"judgeInviteToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"staff":{"type":"array","items":{"type":"object","properties":{"userId":{"type":"string"},"name":{"anyOf":[{"type":"string"},{"type":"null"}]},"role":{"enum":["organizer","judge"],"type":"string"},"source":{"enum":["grant","organization"],"type":"string"},"orgRole":{"anyOf":[{"enum":["owner","manager","judge"],"type":"string"},{"type":"null"}]},"addedAt":{"type":"string"}},"required":["userId","name","role","source","orgRole","addedAt"]}},"hasRounds":{"type":"boolean"}},"required":["id","name","status","host","groupId","groupSlug","groupName","pairingStyle","playMode","deckSubmission","deckFormat","startsAt","endsAt","modules","participantCount","pendingRequestCount","myRoles","participantPreview","winner","coverLegends","createdAt","updatedAt","myDeckEntry","currentRound","scoringScheme","byePoints","matchFormat","winPoints","drawPoints","regionsEnabled","deckPhase","submissionsCloseAt","listLockMode","allowedSets","selfRegistration","reportToken","followToken","submissionToken","organizerInviteToken","judgeInviteToken","staff","hasRounds"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/tournaments/{id}/participants":{"get":{"operationId":"tournamentsContract.listParticipants","tags":["Tournaments"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"userId":{"anyOf":[{"type":"string"},{"type":"null"}]},"userName":{"anyOf":[{"type":"string"},{"type":"null"}]},"displayName":{"type":"string"},"riotId":{"anyOf":[{"type":"string"},{"type":"null"}]},"status":{"enum":["requested","invited","active","dropped","no_show"],"type":"string"},"seed":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"teamId":{"anyOf":[{"type":"string"},{"type":"null"}]},"region":{"anyOf":[{"type":"string"},{"type":"null"}]},"fixedTable":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"droppedAfterRound":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"claimToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"claimBlocked":{"type":"boolean"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","userId","userName","displayName","riotId","status","seed","teamId","region","fixedTable","droppedAfterRound","claimToken","claimBlocked","createdAt","updatedAt"]}}},"required":["items"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"post":{"operationId":"tournamentsContract.addParticipant","tags":["Tournaments"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"displayName":{"type":"string","minLength":1,"maxLength":120},"region":{"anyOf":[{"type":"string","minLength":1,"maxLength":50},{"type":"null"}]},"fixedTable":{"anyOf":[{"type":"integer","minimum":1,"maximum":999},{"type":"null"}]}},"required":["displayName"]}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"userId":{"anyOf":[{"type":"string"},{"type":"null"}]},"userName":{"anyOf":[{"type":"string"},{"type":"null"}]},"displayName":{"type":"string"},"riotId":{"anyOf":[{"type":"string"},{"type":"null"}]},"status":{"enum":["requested","invited","active","dropped","no_show"],"type":"string"},"seed":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"teamId":{"anyOf":[{"type":"string"},{"type":"null"}]},"region":{"anyOf":[{"type":"string"},{"type":"null"}]},"fixedTable":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"droppedAfterRound":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"claimToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"claimBlocked":{"type":"boolean"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","userId","userName","displayName","riotId","status","seed","teamId","region","fixedTable","droppedAfterRound","claimToken","claimBlocked","createdAt","updatedAt"]}}},"required":["items"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/tournaments/{id}/participants/{participantId}":{"patch":{"operationId":"tournamentsContract.updateParticipant","tags":["Tournaments"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"participantId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"requestBody":{"required":false,"content":{"application/json":{"schema":{"type":"object","properties":{"displayName":{"type":"string","minLength":1,"maxLength":120},"seed":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"region":{"anyOf":[{"type":"string","minLength":1,"maxLength":50},{"type":"null"}]},"fixedTable":{"anyOf":[{"type":"integer","minimum":1,"maximum":999},{"type":"null"}]}}}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"userId":{"anyOf":[{"type":"string"},{"type":"null"}]},"userName":{"anyOf":[{"type":"string"},{"type":"null"}]},"displayName":{"type":"string"},"riotId":{"anyOf":[{"type":"string"},{"type":"null"}]},"status":{"enum":["requested","invited","active","dropped","no_show"],"type":"string"},"seed":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"teamId":{"anyOf":[{"type":"string"},{"type":"null"}]},"region":{"anyOf":[{"type":"string"},{"type":"null"}]},"fixedTable":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"droppedAfterRound":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"claimToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"claimBlocked":{"type":"boolean"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","userId","userName","displayName","riotId","status","seed","teamId","region","fixedTable","droppedAfterRound","claimToken","claimBlocked","createdAt","updatedAt"]}}},"required":["items"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament or participant not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"delete":{"operationId":"tournamentsContract.removeParticipant","tags":["Tournaments"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"participantId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"userId":{"anyOf":[{"type":"string"},{"type":"null"}]},"userName":{"anyOf":[{"type":"string"},{"type":"null"}]},"displayName":{"type":"string"},"riotId":{"anyOf":[{"type":"string"},{"type":"null"}]},"status":{"enum":["requested","invited","active","dropped","no_show"],"type":"string"},"seed":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"teamId":{"anyOf":[{"type":"string"},{"type":"null"}]},"region":{"anyOf":[{"type":"string"},{"type":"null"}]},"fixedTable":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"droppedAfterRound":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"claimToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"claimBlocked":{"type":"boolean"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","userId","userName","displayName","riotId","status","seed","teamId","region","fixedTable","droppedAfterRound","claimToken","claimBlocked","createdAt","updatedAt"]}}},"required":["items"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament or participant not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"409":{"description":"409","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"CONFLICT"},"status":{"const":409},"message":{"type":"string","default":"Participant is in a paired round and cannot be removed"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/tournaments/{id}/participants/{participantId}/drop":{"post":{"operationId":"tournamentsContract.dropParticipant","tags":["Tournaments"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"participantId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"userId":{"anyOf":[{"type":"string"},{"type":"null"}]},"userName":{"anyOf":[{"type":"string"},{"type":"null"}]},"displayName":{"type":"string"},"riotId":{"anyOf":[{"type":"string"},{"type":"null"}]},"status":{"enum":["requested","invited","active","dropped","no_show"],"type":"string"},"seed":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"teamId":{"anyOf":[{"type":"string"},{"type":"null"}]},"region":{"anyOf":[{"type":"string"},{"type":"null"}]},"fixedTable":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"droppedAfterRound":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"claimToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"claimBlocked":{"type":"boolean"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","userId","userName","displayName","riotId","status","seed","teamId","region","fixedTable","droppedAfterRound","claimToken","claimBlocked","createdAt","updatedAt"]}}},"required":["items"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament or participant not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/tournaments/{id}/participants/{participantId}/reactivate":{"post":{"operationId":"tournamentsContract.reactivateParticipant","tags":["Tournaments"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"participantId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"userId":{"anyOf":[{"type":"string"},{"type":"null"}]},"userName":{"anyOf":[{"type":"string"},{"type":"null"}]},"displayName":{"type":"string"},"riotId":{"anyOf":[{"type":"string"},{"type":"null"}]},"status":{"enum":["requested","invited","active","dropped","no_show"],"type":"string"},"seed":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"teamId":{"anyOf":[{"type":"string"},{"type":"null"}]},"region":{"anyOf":[{"type":"string"},{"type":"null"}]},"fixedTable":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"droppedAfterRound":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"claimToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"claimBlocked":{"type":"boolean"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","userId","userName","displayName","riotId","status","seed","teamId","region","fixedTable","droppedAfterRound","claimToken","claimBlocked","createdAt","updatedAt"]}}},"required":["items"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament or participant not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/tournaments/{id}/participants/{participantId}/approve":{"post":{"operationId":"tournamentsContract.approveParticipant","tags":["Tournaments"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"participantId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"userId":{"anyOf":[{"type":"string"},{"type":"null"}]},"userName":{"anyOf":[{"type":"string"},{"type":"null"}]},"displayName":{"type":"string"},"riotId":{"anyOf":[{"type":"string"},{"type":"null"}]},"status":{"enum":["requested","invited","active","dropped","no_show"],"type":"string"},"seed":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"teamId":{"anyOf":[{"type":"string"},{"type":"null"}]},"region":{"anyOf":[{"type":"string"},{"type":"null"}]},"fixedTable":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"droppedAfterRound":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"claimToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"claimBlocked":{"type":"boolean"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","userId","userName","displayName","riotId","status","seed","teamId","region","fixedTable","droppedAfterRound","claimToken","claimBlocked","createdAt","updatedAt"]}}},"required":["items"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament or participant not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"409":{"description":"409","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"CONFLICT"},"status":{"const":409},"message":{"type":"string","default":"Only a pending request can be approved"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/tournaments/{id}/participants/{participantId}/deny":{"post":{"operationId":"tournamentsContract.denyParticipant","tags":["Tournaments"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"participantId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"userId":{"anyOf":[{"type":"string"},{"type":"null"}]},"userName":{"anyOf":[{"type":"string"},{"type":"null"}]},"displayName":{"type":"string"},"riotId":{"anyOf":[{"type":"string"},{"type":"null"}]},"status":{"enum":["requested","invited","active","dropped","no_show"],"type":"string"},"seed":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"teamId":{"anyOf":[{"type":"string"},{"type":"null"}]},"region":{"anyOf":[{"type":"string"},{"type":"null"}]},"fixedTable":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"droppedAfterRound":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"claimToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"claimBlocked":{"type":"boolean"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","userId","userName","displayName","riotId","status","seed","teamId","region","fixedTable","droppedAfterRound","claimToken","claimBlocked","createdAt","updatedAt"]}}},"required":["items"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament or participant not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"409":{"description":"409","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"CONFLICT"},"status":{"const":409},"message":{"type":"string","default":"Only a pending request can be denied"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/tournaments/{id}/participants/{participantId}/unlink":{"post":{"operationId":"tournamentsContract.unlinkParticipant","tags":["Tournaments"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"participantId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"userId":{"anyOf":[{"type":"string"},{"type":"null"}]},"userName":{"anyOf":[{"type":"string"},{"type":"null"}]},"displayName":{"type":"string"},"riotId":{"anyOf":[{"type":"string"},{"type":"null"}]},"status":{"enum":["requested","invited","active","dropped","no_show"],"type":"string"},"seed":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"teamId":{"anyOf":[{"type":"string"},{"type":"null"}]},"region":{"anyOf":[{"type":"string"},{"type":"null"}]},"fixedTable":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"droppedAfterRound":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"claimToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"claimBlocked":{"type":"boolean"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","userId","userName","displayName","riotId","status","seed","teamId","region","fixedTable","droppedAfterRound","claimToken","claimBlocked","createdAt","updatedAt"]}}},"required":["items"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament or participant not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/tournaments/{id}/participants/{participantId}/reissue-claim":{"post":{"operationId":"tournamentsContract.reissueClaim","tags":["Tournaments"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"participantId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"userId":{"anyOf":[{"type":"string"},{"type":"null"}]},"userName":{"anyOf":[{"type":"string"},{"type":"null"}]},"displayName":{"type":"string"},"riotId":{"anyOf":[{"type":"string"},{"type":"null"}]},"status":{"enum":["requested","invited","active","dropped","no_show"],"type":"string"},"seed":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"teamId":{"anyOf":[{"type":"string"},{"type":"null"}]},"region":{"anyOf":[{"type":"string"},{"type":"null"}]},"fixedTable":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"droppedAfterRound":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"claimToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"claimBlocked":{"type":"boolean"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","userId","userName","displayName","riotId","status","seed","teamId","region","fixedTable","droppedAfterRound","claimToken","claimBlocked","createdAt","updatedAt"]}}},"required":["items"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament or participant not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/tournaments/{id}/teams":{"post":{"operationId":"tournamentsContract.createTeam","tags":["Tournaments"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"participantIds":{"type":"array","minItems":2,"maxItems":2,"items":{"type":"string","format":"uuid"}}},"required":["participantIds"]}}}},"responses":{"201":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"userId":{"anyOf":[{"type":"string"},{"type":"null"}]},"userName":{"anyOf":[{"type":"string"},{"type":"null"}]},"displayName":{"type":"string"},"riotId":{"anyOf":[{"type":"string"},{"type":"null"}]},"status":{"enum":["requested","invited","active","dropped","no_show"],"type":"string"},"seed":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"teamId":{"anyOf":[{"type":"string"},{"type":"null"}]},"region":{"anyOf":[{"type":"string"},{"type":"null"}]},"fixedTable":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"droppedAfterRound":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"claimToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"claimBlocked":{"type":"boolean"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","userId","userName","displayName","riotId","status","seed","teamId","region","fixedTable","droppedAfterRound","claimToken","claimBlocked","createdAt","updatedAt"]}}},"required":["items"]}}}},"400":{"description":"400","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"BAD_REQUEST"},"status":{"const":400},"message":{"type":"string","default":"Teams need exactly two active participants of a 2v2 tournament"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament or participant not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"409":{"description":"409","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"CONFLICT"},"status":{"const":409},"message":{"type":"string","default":"A participant is already on a team"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/tournaments/{id}/teams/{teamId}":{"delete":{"operationId":"tournamentsContract.dissolveTeam","tags":["Tournaments"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"teamId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"userId":{"anyOf":[{"type":"string"},{"type":"null"}]},"userName":{"anyOf":[{"type":"string"},{"type":"null"}]},"displayName":{"type":"string"},"riotId":{"anyOf":[{"type":"string"},{"type":"null"}]},"status":{"enum":["requested","invited","active","dropped","no_show"],"type":"string"},"seed":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"teamId":{"anyOf":[{"type":"string"},{"type":"null"}]},"region":{"anyOf":[{"type":"string"},{"type":"null"}]},"fixedTable":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"droppedAfterRound":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"claimToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"claimBlocked":{"type":"boolean"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","userId","userName","displayName","riotId","status","seed","teamId","region","fixedTable","droppedAfterRound","claimToken","claimBlocked","createdAt","updatedAt"]}}},"required":["items"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament or team not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"409":{"description":"409","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"CONFLICT"},"status":{"const":409},"message":{"type":"string","default":"A team that has played a round cannot be dissolved"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/tournaments/{id}/run":{"get":{"operationId":"tournamentsContract.runState","tags":["Tournaments"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"tournament":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"status":{"enum":["setup","running","completed"],"type":"string"},"currentRound":{"type":"integer","minimum":0,"maximum":9007199254740991},"pairingStyle":{"enum":["none","pod","swiss"],"type":"string"},"playMode":{"enum":["1v1","2v2"],"type":"string"},"scoringScheme":{"enum":["standard","three_pod_reduced"],"type":"string"},"byePoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"matchFormat":{"enum":["bo1","bo3"],"type":"string"},"winPoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"drawPoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"regionsEnabled":{"type":"boolean"},"reportToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","name","status","currentRound","pairingStyle","playMode","scoringScheme","byePoints","matchFormat","winPoints","drawPoints","regionsEnabled","reportToken","createdAt","updatedAt"]},"players":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"displayName":{"type":"string"},"status":{"enum":["active","dropped"],"type":"string"},"droppedAfterRound":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"teamId":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdAt":{"type":"string"}},"required":["id","displayName","status","droppedAfterRound","teamId","createdAt"]}},"standings":{"type":"array","items":{"type":"object","properties":{"playerId":{"type":"string"},"displayName":{"type":"string"},"status":{"enum":["active","dropped"],"type":"string"},"droppedAfterRound":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"teamId":{"anyOf":[{"type":"string"},{"type":"null"}]},"score":{"type":"number"},"gamePoints":{"type":"number","minimum":0},"roundsPlayed":{"type":"integer","minimum":0,"maximum":9007199254740991},"pods3Count":{"type":"integer","minimum":0,"maximum":9007199254740991},"pods4Count":{"type":"integer","minimum":0,"maximum":9007199254740991},"byeCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"podWins":{"type":"integer","minimum":0,"maximum":9007199254740991},"wins":{"type":"integer","minimum":0,"maximum":9007199254740991},"draws":{"type":"integer","minimum":0,"maximum":9007199254740991},"losses":{"type":"integer","minimum":0,"maximum":9007199254740991},"region":{"anyOf":[{"type":"string"},{"type":"null"}]},"avgOpponentScore":{"type":"number"},"avgOpponentGamePoints":{"type":"number"}},"required":["playerId","displayName","status","droppedAfterRound","teamId","score","gamePoints","roundsPlayed","pods3Count","pods4Count","byeCount","podWins","wins","draws","losses","region","avgOpponentScore","avgOpponentGamePoints"]}},"rounds":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"roundNumber":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"status":{"enum":["reporting","finalized"],"type":"string"},"pairingStrategy":{"anyOf":[{"type":"string"},{"type":"null"}]},"penaltyTotal":{"anyOf":[{"type":"number"},{"type":"null"}]},"createdAt":{"type":"string"},"finalizedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"pods":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"podNumber":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"size":{"anyOf":[{"const":2},{"const":3},{"const":4}]},"resultStatus":{"enum":["pending","reported"],"type":"string"},"members":{"type":"array","items":{"type":"object","properties":{"playerId":{"type":"string"},"displayName":{"type":"string"},"teamId":{"anyOf":[{"type":"string"},{"type":"null"}]},"gamePoints":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"placement":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"points":{"anyOf":[{"type":"number"},{"type":"null"}]}},"required":["playerId","displayName","teamId","gamePoints","placement","points"]}},"penalty":{"anyOf":[{"type":"object","properties":{"total":{"type":"number"},"rematchPairs":{"type":"integer","minimum":0,"maximum":9007199254740991},"spread":{"type":"number"},"scoreSpread":{"type":"number"},"imbalance":{"type":"number"},"float":{"type":"number"},"threePodRepeat":{"type":"number"},"sameRegion":{"type":"number"},"repeatedRegion":{"type":"number"}},"required":["total","rematchPairs","spread","scoreSpread","imbalance","float","threePodRepeat","sameRegion","repeatedRegion"]},{"type":"null"}]}},"required":["id","podNumber","size","resultStatus","members","penalty"]}},"byes":{"type":"array","items":{"type":"object","properties":{"playerId":{"type":"string"},"displayName":{"type":"string"}},"required":["playerId","displayName"]}}},"required":["id","roundNumber","status","pairingStrategy","penaltyTotal","createdAt","finalizedAt","pods","byes"]}},"openRoundSnapshot":{"anyOf":[{"type":"array","items":{"type":"object","properties":{"playerId":{"type":"string"},"teamId":{"anyOf":[{"type":"string"},{"type":"null"}]},"score":{"type":"number"},"pods3":{"type":"integer","minimum":0,"maximum":9007199254740991},"pods4":{"type":"integer","minimum":0,"maximum":9007199254740991},"byes":{"type":"integer","minimum":0,"maximum":9007199254740991},"opponents":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"integer","minimum":0,"maximum":9007199254740991}},"region":{"anyOf":[{"type":"string"},{"type":"null"}]},"regionHistory":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"integer","minimum":0,"maximum":9007199254740991}},"fixedTable":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]}},"required":["playerId","teamId","score","pods3","pods4","byes","opponents","region","regionHistory","fixedTable"]}},{"type":"null"}]}},"required":["tournament","players","standings","rounds","openRoundSnapshot"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/tournaments/{id}/rounds":{"post":{"operationId":"tournamentsContract.generateRound","tags":["Tournaments"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"requestBody":{"required":false,"content":{"application/json":{"schema":{"type":"object","properties":{"byes":{"type":"array","items":{"type":"string","format":"uuid"},"default":[]}}}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"tournament":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"status":{"enum":["setup","running","completed"],"type":"string"},"currentRound":{"type":"integer","minimum":0,"maximum":9007199254740991},"pairingStyle":{"enum":["none","pod","swiss"],"type":"string"},"playMode":{"enum":["1v1","2v2"],"type":"string"},"scoringScheme":{"enum":["standard","three_pod_reduced"],"type":"string"},"byePoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"matchFormat":{"enum":["bo1","bo3"],"type":"string"},"winPoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"drawPoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"regionsEnabled":{"type":"boolean"},"reportToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","name","status","currentRound","pairingStyle","playMode","scoringScheme","byePoints","matchFormat","winPoints","drawPoints","regionsEnabled","reportToken","createdAt","updatedAt"]},"players":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"displayName":{"type":"string"},"status":{"enum":["active","dropped"],"type":"string"},"droppedAfterRound":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"teamId":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdAt":{"type":"string"}},"required":["id","displayName","status","droppedAfterRound","teamId","createdAt"]}},"standings":{"type":"array","items":{"type":"object","properties":{"playerId":{"type":"string"},"displayName":{"type":"string"},"status":{"enum":["active","dropped"],"type":"string"},"droppedAfterRound":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"teamId":{"anyOf":[{"type":"string"},{"type":"null"}]},"score":{"type":"number"},"gamePoints":{"type":"number","minimum":0},"roundsPlayed":{"type":"integer","minimum":0,"maximum":9007199254740991},"pods3Count":{"type":"integer","minimum":0,"maximum":9007199254740991},"pods4Count":{"type":"integer","minimum":0,"maximum":9007199254740991},"byeCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"podWins":{"type":"integer","minimum":0,"maximum":9007199254740991},"wins":{"type":"integer","minimum":0,"maximum":9007199254740991},"draws":{"type":"integer","minimum":0,"maximum":9007199254740991},"losses":{"type":"integer","minimum":0,"maximum":9007199254740991},"region":{"anyOf":[{"type":"string"},{"type":"null"}]},"avgOpponentScore":{"type":"number"},"avgOpponentGamePoints":{"type":"number"}},"required":["playerId","displayName","status","droppedAfterRound","teamId","score","gamePoints","roundsPlayed","pods3Count","pods4Count","byeCount","podWins","wins","draws","losses","region","avgOpponentScore","avgOpponentGamePoints"]}},"rounds":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"roundNumber":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"status":{"enum":["reporting","finalized"],"type":"string"},"pairingStrategy":{"anyOf":[{"type":"string"},{"type":"null"}]},"penaltyTotal":{"anyOf":[{"type":"number"},{"type":"null"}]},"createdAt":{"type":"string"},"finalizedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"pods":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"podNumber":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"size":{"anyOf":[{"const":2},{"const":3},{"const":4}]},"resultStatus":{"enum":["pending","reported"],"type":"string"},"members":{"type":"array","items":{"type":"object","properties":{"playerId":{"type":"string"},"displayName":{"type":"string"},"teamId":{"anyOf":[{"type":"string"},{"type":"null"}]},"gamePoints":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"placement":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"points":{"anyOf":[{"type":"number"},{"type":"null"}]}},"required":["playerId","displayName","teamId","gamePoints","placement","points"]}},"penalty":{"anyOf":[{"type":"object","properties":{"total":{"type":"number"},"rematchPairs":{"type":"integer","minimum":0,"maximum":9007199254740991},"spread":{"type":"number"},"scoreSpread":{"type":"number"},"imbalance":{"type":"number"},"float":{"type":"number"},"threePodRepeat":{"type":"number"},"sameRegion":{"type":"number"},"repeatedRegion":{"type":"number"}},"required":["total","rematchPairs","spread","scoreSpread","imbalance","float","threePodRepeat","sameRegion","repeatedRegion"]},{"type":"null"}]}},"required":["id","podNumber","size","resultStatus","members","penalty"]}},"byes":{"type":"array","items":{"type":"object","properties":{"playerId":{"type":"string"},"displayName":{"type":"string"}},"required":["playerId","displayName"]}}},"required":["id","roundNumber","status","pairingStrategy","penaltyTotal","createdAt","finalizedAt","pods","byes"]}},"openRoundSnapshot":{"anyOf":[{"type":"array","items":{"type":"object","properties":{"playerId":{"type":"string"},"teamId":{"anyOf":[{"type":"string"},{"type":"null"}]},"score":{"type":"number"},"pods3":{"type":"integer","minimum":0,"maximum":9007199254740991},"pods4":{"type":"integer","minimum":0,"maximum":9007199254740991},"byes":{"type":"integer","minimum":0,"maximum":9007199254740991},"opponents":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"integer","minimum":0,"maximum":9007199254740991}},"region":{"anyOf":[{"type":"string"},{"type":"null"}]},"regionHistory":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"integer","minimum":0,"maximum":9007199254740991}},"fixedTable":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]}},"required":["playerId","teamId","score","pods3","pods4","byes","opponents","region","regionHistory","fixedTable"]}},{"type":"null"}]}},"required":["tournament","players","standings","rounds","openRoundSnapshot"]}}}},"400":{"description":"400","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"BAD_REQUEST"},"status":{"const":400},"message":{"type":"string","default":"Invalid player count or bye selection"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"409":{"description":"409","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"CONFLICT"},"status":{"const":409},"message":{"type":"string","default":"A round is already open"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/tournaments/{id}/rounds/{roundNumber}/pairing":{"put":{"operationId":"tournamentsContract.replacePairing","tags":["Tournaments"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"roundNumber","in":"path","required":true,"schema":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"pods":{"type":"array","minItems":0,"items":{"type":"object","properties":{"size":{"anyOf":[{"const":2},{"const":3},{"const":4}]},"playerIds":{"type":"array","items":{"type":"string","format":"uuid"}}},"required":["size","playerIds"]}},"byes":{"type":"array","items":{"type":"string","format":"uuid"}}},"required":["pods","byes"]}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"tournament":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"status":{"enum":["setup","running","completed"],"type":"string"},"currentRound":{"type":"integer","minimum":0,"maximum":9007199254740991},"pairingStyle":{"enum":["none","pod","swiss"],"type":"string"},"playMode":{"enum":["1v1","2v2"],"type":"string"},"scoringScheme":{"enum":["standard","three_pod_reduced"],"type":"string"},"byePoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"matchFormat":{"enum":["bo1","bo3"],"type":"string"},"winPoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"drawPoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"regionsEnabled":{"type":"boolean"},"reportToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","name","status","currentRound","pairingStyle","playMode","scoringScheme","byePoints","matchFormat","winPoints","drawPoints","regionsEnabled","reportToken","createdAt","updatedAt"]},"players":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"displayName":{"type":"string"},"status":{"enum":["active","dropped"],"type":"string"},"droppedAfterRound":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"teamId":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdAt":{"type":"string"}},"required":["id","displayName","status","droppedAfterRound","teamId","createdAt"]}},"standings":{"type":"array","items":{"type":"object","properties":{"playerId":{"type":"string"},"displayName":{"type":"string"},"status":{"enum":["active","dropped"],"type":"string"},"droppedAfterRound":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"teamId":{"anyOf":[{"type":"string"},{"type":"null"}]},"score":{"type":"number"},"gamePoints":{"type":"number","minimum":0},"roundsPlayed":{"type":"integer","minimum":0,"maximum":9007199254740991},"pods3Count":{"type":"integer","minimum":0,"maximum":9007199254740991},"pods4Count":{"type":"integer","minimum":0,"maximum":9007199254740991},"byeCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"podWins":{"type":"integer","minimum":0,"maximum":9007199254740991},"wins":{"type":"integer","minimum":0,"maximum":9007199254740991},"draws":{"type":"integer","minimum":0,"maximum":9007199254740991},"losses":{"type":"integer","minimum":0,"maximum":9007199254740991},"region":{"anyOf":[{"type":"string"},{"type":"null"}]},"avgOpponentScore":{"type":"number"},"avgOpponentGamePoints":{"type":"number"}},"required":["playerId","displayName","status","droppedAfterRound","teamId","score","gamePoints","roundsPlayed","pods3Count","pods4Count","byeCount","podWins","wins","draws","losses","region","avgOpponentScore","avgOpponentGamePoints"]}},"rounds":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"roundNumber":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"status":{"enum":["reporting","finalized"],"type":"string"},"pairingStrategy":{"anyOf":[{"type":"string"},{"type":"null"}]},"penaltyTotal":{"anyOf":[{"type":"number"},{"type":"null"}]},"createdAt":{"type":"string"},"finalizedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"pods":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"podNumber":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"size":{"anyOf":[{"const":2},{"const":3},{"const":4}]},"resultStatus":{"enum":["pending","reported"],"type":"string"},"members":{"type":"array","items":{"type":"object","properties":{"playerId":{"type":"string"},"displayName":{"type":"string"},"teamId":{"anyOf":[{"type":"string"},{"type":"null"}]},"gamePoints":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"placement":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"points":{"anyOf":[{"type":"number"},{"type":"null"}]}},"required":["playerId","displayName","teamId","gamePoints","placement","points"]}},"penalty":{"anyOf":[{"type":"object","properties":{"total":{"type":"number"},"rematchPairs":{"type":"integer","minimum":0,"maximum":9007199254740991},"spread":{"type":"number"},"scoreSpread":{"type":"number"},"imbalance":{"type":"number"},"float":{"type":"number"},"threePodRepeat":{"type":"number"},"sameRegion":{"type":"number"},"repeatedRegion":{"type":"number"}},"required":["total","rematchPairs","spread","scoreSpread","imbalance","float","threePodRepeat","sameRegion","repeatedRegion"]},{"type":"null"}]}},"required":["id","podNumber","size","resultStatus","members","penalty"]}},"byes":{"type":"array","items":{"type":"object","properties":{"playerId":{"type":"string"},"displayName":{"type":"string"}},"required":["playerId","displayName"]}}},"required":["id","roundNumber","status","pairingStrategy","penaltyTotal","createdAt","finalizedAt","pods","byes"]}},"openRoundSnapshot":{"anyOf":[{"type":"array","items":{"type":"object","properties":{"playerId":{"type":"string"},"teamId":{"anyOf":[{"type":"string"},{"type":"null"}]},"score":{"type":"number"},"pods3":{"type":"integer","minimum":0,"maximum":9007199254740991},"pods4":{"type":"integer","minimum":0,"maximum":9007199254740991},"byes":{"type":"integer","minimum":0,"maximum":9007199254740991},"opponents":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"integer","minimum":0,"maximum":9007199254740991}},"region":{"anyOf":[{"type":"string"},{"type":"null"}]},"regionHistory":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"integer","minimum":0,"maximum":9007199254740991}},"fixedTable":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]}},"required":["playerId","teamId","score","pods3","pods4","byes","opponents","region","regionHistory","fixedTable"]}},{"type":"null"}]}},"required":["tournament","players","standings","rounds","openRoundSnapshot"]}}}},"400":{"description":"400","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"BAD_REQUEST"},"status":{"const":400},"message":{"type":"string","default":"Invalid pod sizes or player assignment"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament or round not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/tournaments/{id}/rounds/{roundNumber}/reroll":{"post":{"operationId":"tournamentsContract.rerollRound","tags":["Tournaments"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"roundNumber","in":"path","required":true,"schema":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"tournament":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"status":{"enum":["setup","running","completed"],"type":"string"},"currentRound":{"type":"integer","minimum":0,"maximum":9007199254740991},"pairingStyle":{"enum":["none","pod","swiss"],"type":"string"},"playMode":{"enum":["1v1","2v2"],"type":"string"},"scoringScheme":{"enum":["standard","three_pod_reduced"],"type":"string"},"byePoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"matchFormat":{"enum":["bo1","bo3"],"type":"string"},"winPoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"drawPoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"regionsEnabled":{"type":"boolean"},"reportToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","name","status","currentRound","pairingStyle","playMode","scoringScheme","byePoints","matchFormat","winPoints","drawPoints","regionsEnabled","reportToken","createdAt","updatedAt"]},"players":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"displayName":{"type":"string"},"status":{"enum":["active","dropped"],"type":"string"},"droppedAfterRound":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"teamId":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdAt":{"type":"string"}},"required":["id","displayName","status","droppedAfterRound","teamId","createdAt"]}},"standings":{"type":"array","items":{"type":"object","properties":{"playerId":{"type":"string"},"displayName":{"type":"string"},"status":{"enum":["active","dropped"],"type":"string"},"droppedAfterRound":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"teamId":{"anyOf":[{"type":"string"},{"type":"null"}]},"score":{"type":"number"},"gamePoints":{"type":"number","minimum":0},"roundsPlayed":{"type":"integer","minimum":0,"maximum":9007199254740991},"pods3Count":{"type":"integer","minimum":0,"maximum":9007199254740991},"pods4Count":{"type":"integer","minimum":0,"maximum":9007199254740991},"byeCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"podWins":{"type":"integer","minimum":0,"maximum":9007199254740991},"wins":{"type":"integer","minimum":0,"maximum":9007199254740991},"draws":{"type":"integer","minimum":0,"maximum":9007199254740991},"losses":{"type":"integer","minimum":0,"maximum":9007199254740991},"region":{"anyOf":[{"type":"string"},{"type":"null"}]},"avgOpponentScore":{"type":"number"},"avgOpponentGamePoints":{"type":"number"}},"required":["playerId","displayName","status","droppedAfterRound","teamId","score","gamePoints","roundsPlayed","pods3Count","pods4Count","byeCount","podWins","wins","draws","losses","region","avgOpponentScore","avgOpponentGamePoints"]}},"rounds":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"roundNumber":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"status":{"enum":["reporting","finalized"],"type":"string"},"pairingStrategy":{"anyOf":[{"type":"string"},{"type":"null"}]},"penaltyTotal":{"anyOf":[{"type":"number"},{"type":"null"}]},"createdAt":{"type":"string"},"finalizedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"pods":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"podNumber":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"size":{"anyOf":[{"const":2},{"const":3},{"const":4}]},"resultStatus":{"enum":["pending","reported"],"type":"string"},"members":{"type":"array","items":{"type":"object","properties":{"playerId":{"type":"string"},"displayName":{"type":"string"},"teamId":{"anyOf":[{"type":"string"},{"type":"null"}]},"gamePoints":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"placement":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"points":{"anyOf":[{"type":"number"},{"type":"null"}]}},"required":["playerId","displayName","teamId","gamePoints","placement","points"]}},"penalty":{"anyOf":[{"type":"object","properties":{"total":{"type":"number"},"rematchPairs":{"type":"integer","minimum":0,"maximum":9007199254740991},"spread":{"type":"number"},"scoreSpread":{"type":"number"},"imbalance":{"type":"number"},"float":{"type":"number"},"threePodRepeat":{"type":"number"},"sameRegion":{"type":"number"},"repeatedRegion":{"type":"number"}},"required":["total","rematchPairs","spread","scoreSpread","imbalance","float","threePodRepeat","sameRegion","repeatedRegion"]},{"type":"null"}]}},"required":["id","podNumber","size","resultStatus","members","penalty"]}},"byes":{"type":"array","items":{"type":"object","properties":{"playerId":{"type":"string"},"displayName":{"type":"string"}},"required":["playerId","displayName"]}}},"required":["id","roundNumber","status","pairingStrategy","penaltyTotal","createdAt","finalizedAt","pods","byes"]}},"openRoundSnapshot":{"anyOf":[{"type":"array","items":{"type":"object","properties":{"playerId":{"type":"string"},"teamId":{"anyOf":[{"type":"string"},{"type":"null"}]},"score":{"type":"number"},"pods3":{"type":"integer","minimum":0,"maximum":9007199254740991},"pods4":{"type":"integer","minimum":0,"maximum":9007199254740991},"byes":{"type":"integer","minimum":0,"maximum":9007199254740991},"opponents":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"integer","minimum":0,"maximum":9007199254740991}},"region":{"anyOf":[{"type":"string"},{"type":"null"}]},"regionHistory":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"integer","minimum":0,"maximum":9007199254740991}},"fixedTable":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]}},"required":["playerId","teamId","score","pods3","pods4","byes","opponents","region","regionHistory","fixedTable"]}},{"type":"null"}]}},"required":["tournament","players","standings","rounds","openRoundSnapshot"]}}}},"400":{"description":"400","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"BAD_REQUEST"},"status":{"const":400},"message":{"type":"string","default":"Round is finalized or has results entered"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament or round not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/tournaments/{id}/rounds/{roundNumber}/finalize":{"post":{"operationId":"tournamentsContract.finalizeRound","tags":["Tournaments"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"roundNumber","in":"path","required":true,"schema":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"tournament":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"status":{"enum":["setup","running","completed"],"type":"string"},"currentRound":{"type":"integer","minimum":0,"maximum":9007199254740991},"pairingStyle":{"enum":["none","pod","swiss"],"type":"string"},"playMode":{"enum":["1v1","2v2"],"type":"string"},"scoringScheme":{"enum":["standard","three_pod_reduced"],"type":"string"},"byePoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"matchFormat":{"enum":["bo1","bo3"],"type":"string"},"winPoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"drawPoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"regionsEnabled":{"type":"boolean"},"reportToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","name","status","currentRound","pairingStyle","playMode","scoringScheme","byePoints","matchFormat","winPoints","drawPoints","regionsEnabled","reportToken","createdAt","updatedAt"]},"players":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"displayName":{"type":"string"},"status":{"enum":["active","dropped"],"type":"string"},"droppedAfterRound":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"teamId":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdAt":{"type":"string"}},"required":["id","displayName","status","droppedAfterRound","teamId","createdAt"]}},"standings":{"type":"array","items":{"type":"object","properties":{"playerId":{"type":"string"},"displayName":{"type":"string"},"status":{"enum":["active","dropped"],"type":"string"},"droppedAfterRound":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"teamId":{"anyOf":[{"type":"string"},{"type":"null"}]},"score":{"type":"number"},"gamePoints":{"type":"number","minimum":0},"roundsPlayed":{"type":"integer","minimum":0,"maximum":9007199254740991},"pods3Count":{"type":"integer","minimum":0,"maximum":9007199254740991},"pods4Count":{"type":"integer","minimum":0,"maximum":9007199254740991},"byeCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"podWins":{"type":"integer","minimum":0,"maximum":9007199254740991},"wins":{"type":"integer","minimum":0,"maximum":9007199254740991},"draws":{"type":"integer","minimum":0,"maximum":9007199254740991},"losses":{"type":"integer","minimum":0,"maximum":9007199254740991},"region":{"anyOf":[{"type":"string"},{"type":"null"}]},"avgOpponentScore":{"type":"number"},"avgOpponentGamePoints":{"type":"number"}},"required":["playerId","displayName","status","droppedAfterRound","teamId","score","gamePoints","roundsPlayed","pods3Count","pods4Count","byeCount","podWins","wins","draws","losses","region","avgOpponentScore","avgOpponentGamePoints"]}},"rounds":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"roundNumber":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"status":{"enum":["reporting","finalized"],"type":"string"},"pairingStrategy":{"anyOf":[{"type":"string"},{"type":"null"}]},"penaltyTotal":{"anyOf":[{"type":"number"},{"type":"null"}]},"createdAt":{"type":"string"},"finalizedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"pods":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"podNumber":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"size":{"anyOf":[{"const":2},{"const":3},{"const":4}]},"resultStatus":{"enum":["pending","reported"],"type":"string"},"members":{"type":"array","items":{"type":"object","properties":{"playerId":{"type":"string"},"displayName":{"type":"string"},"teamId":{"anyOf":[{"type":"string"},{"type":"null"}]},"gamePoints":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"placement":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"points":{"anyOf":[{"type":"number"},{"type":"null"}]}},"required":["playerId","displayName","teamId","gamePoints","placement","points"]}},"penalty":{"anyOf":[{"type":"object","properties":{"total":{"type":"number"},"rematchPairs":{"type":"integer","minimum":0,"maximum":9007199254740991},"spread":{"type":"number"},"scoreSpread":{"type":"number"},"imbalance":{"type":"number"},"float":{"type":"number"},"threePodRepeat":{"type":"number"},"sameRegion":{"type":"number"},"repeatedRegion":{"type":"number"}},"required":["total","rematchPairs","spread","scoreSpread","imbalance","float","threePodRepeat","sameRegion","repeatedRegion"]},{"type":"null"}]}},"required":["id","podNumber","size","resultStatus","members","penalty"]}},"byes":{"type":"array","items":{"type":"object","properties":{"playerId":{"type":"string"},"displayName":{"type":"string"}},"required":["playerId","displayName"]}}},"required":["id","roundNumber","status","pairingStrategy","penaltyTotal","createdAt","finalizedAt","pods","byes"]}},"openRoundSnapshot":{"anyOf":[{"type":"array","items":{"type":"object","properties":{"playerId":{"type":"string"},"teamId":{"anyOf":[{"type":"string"},{"type":"null"}]},"score":{"type":"number"},"pods3":{"type":"integer","minimum":0,"maximum":9007199254740991},"pods4":{"type":"integer","minimum":0,"maximum":9007199254740991},"byes":{"type":"integer","minimum":0,"maximum":9007199254740991},"opponents":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"integer","minimum":0,"maximum":9007199254740991}},"region":{"anyOf":[{"type":"string"},{"type":"null"}]},"regionHistory":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"integer","minimum":0,"maximum":9007199254740991}},"fixedTable":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]}},"required":["playerId","teamId","score","pods3","pods4","byes","opponents","region","regionHistory","fixedTable"]}},{"type":"null"}]}},"required":["tournament","players","standings","rounds","openRoundSnapshot"]}}}},"400":{"description":"400","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"BAD_REQUEST"},"status":{"const":400},"message":{"type":"string","default":"Not all pods have results"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament or round not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"409":{"description":"409","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"CONFLICT"},"status":{"const":409},"message":{"type":"string","default":"Round is already finalized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/tournaments/{id}/pods/{podId}/result":{"put":{"operationId":"tournamentsContract.submitResult","tags":["Tournaments"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"podId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"results":{"type":"array","minItems":2,"maxItems":4,"items":{"type":"object","properties":{"playerId":{"type":"string","format":"uuid"},"gamePoints":{"type":"integer","minimum":0,"maximum":99}},"required":["playerId","gamePoints"]}}},"required":["results"]}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"tournament":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"status":{"enum":["setup","running","completed"],"type":"string"},"currentRound":{"type":"integer","minimum":0,"maximum":9007199254740991},"pairingStyle":{"enum":["none","pod","swiss"],"type":"string"},"playMode":{"enum":["1v1","2v2"],"type":"string"},"scoringScheme":{"enum":["standard","three_pod_reduced"],"type":"string"},"byePoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"matchFormat":{"enum":["bo1","bo3"],"type":"string"},"winPoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"drawPoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"regionsEnabled":{"type":"boolean"},"reportToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","name","status","currentRound","pairingStyle","playMode","scoringScheme","byePoints","matchFormat","winPoints","drawPoints","regionsEnabled","reportToken","createdAt","updatedAt"]},"players":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"displayName":{"type":"string"},"status":{"enum":["active","dropped"],"type":"string"},"droppedAfterRound":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"teamId":{"anyOf":[{"type":"string"},{"type":"null"}]},"createdAt":{"type":"string"}},"required":["id","displayName","status","droppedAfterRound","teamId","createdAt"]}},"standings":{"type":"array","items":{"type":"object","properties":{"playerId":{"type":"string"},"displayName":{"type":"string"},"status":{"enum":["active","dropped"],"type":"string"},"droppedAfterRound":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"teamId":{"anyOf":[{"type":"string"},{"type":"null"}]},"score":{"type":"number"},"gamePoints":{"type":"number","minimum":0},"roundsPlayed":{"type":"integer","minimum":0,"maximum":9007199254740991},"pods3Count":{"type":"integer","minimum":0,"maximum":9007199254740991},"pods4Count":{"type":"integer","minimum":0,"maximum":9007199254740991},"byeCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"podWins":{"type":"integer","minimum":0,"maximum":9007199254740991},"wins":{"type":"integer","minimum":0,"maximum":9007199254740991},"draws":{"type":"integer","minimum":0,"maximum":9007199254740991},"losses":{"type":"integer","minimum":0,"maximum":9007199254740991},"region":{"anyOf":[{"type":"string"},{"type":"null"}]},"avgOpponentScore":{"type":"number"},"avgOpponentGamePoints":{"type":"number"}},"required":["playerId","displayName","status","droppedAfterRound","teamId","score","gamePoints","roundsPlayed","pods3Count","pods4Count","byeCount","podWins","wins","draws","losses","region","avgOpponentScore","avgOpponentGamePoints"]}},"rounds":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"roundNumber":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"status":{"enum":["reporting","finalized"],"type":"string"},"pairingStrategy":{"anyOf":[{"type":"string"},{"type":"null"}]},"penaltyTotal":{"anyOf":[{"type":"number"},{"type":"null"}]},"createdAt":{"type":"string"},"finalizedAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"pods":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"podNumber":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"exclusiveMinimum":0},"size":{"anyOf":[{"const":2},{"const":3},{"const":4}]},"resultStatus":{"enum":["pending","reported"],"type":"string"},"members":{"type":"array","items":{"type":"object","properties":{"playerId":{"type":"string"},"displayName":{"type":"string"},"teamId":{"anyOf":[{"type":"string"},{"type":"null"}]},"gamePoints":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"placement":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"points":{"anyOf":[{"type":"number"},{"type":"null"}]}},"required":["playerId","displayName","teamId","gamePoints","placement","points"]}},"penalty":{"anyOf":[{"type":"object","properties":{"total":{"type":"number"},"rematchPairs":{"type":"integer","minimum":0,"maximum":9007199254740991},"spread":{"type":"number"},"scoreSpread":{"type":"number"},"imbalance":{"type":"number"},"float":{"type":"number"},"threePodRepeat":{"type":"number"},"sameRegion":{"type":"number"},"repeatedRegion":{"type":"number"}},"required":["total","rematchPairs","spread","scoreSpread","imbalance","float","threePodRepeat","sameRegion","repeatedRegion"]},{"type":"null"}]}},"required":["id","podNumber","size","resultStatus","members","penalty"]}},"byes":{"type":"array","items":{"type":"object","properties":{"playerId":{"type":"string"},"displayName":{"type":"string"}},"required":["playerId","displayName"]}}},"required":["id","roundNumber","status","pairingStrategy","penaltyTotal","createdAt","finalizedAt","pods","byes"]}},"openRoundSnapshot":{"anyOf":[{"type":"array","items":{"type":"object","properties":{"playerId":{"type":"string"},"teamId":{"anyOf":[{"type":"string"},{"type":"null"}]},"score":{"type":"number"},"pods3":{"type":"integer","minimum":0,"maximum":9007199254740991},"pods4":{"type":"integer","minimum":0,"maximum":9007199254740991},"byes":{"type":"integer","minimum":0,"maximum":9007199254740991},"opponents":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"integer","minimum":0,"maximum":9007199254740991}},"region":{"anyOf":[{"type":"string"},{"type":"null"}]},"regionHistory":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"integer","minimum":0,"maximum":9007199254740991}},"fixedTable":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]}},"required":["playerId","teamId","score","pods3","pods4","byes","opponents","region","regionHistory","fixedTable"]}},{"type":"null"}]}},"required":["tournament","players","standings","rounds","openRoundSnapshot"]}}}},"400":{"description":"400","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"BAD_REQUEST"},"status":{"const":400},"message":{"type":"string","default":"Invalid result set for this pod"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament or pod not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/tournaments/{id}/report-token":{"post":{"operationId":"tournamentsContract.enableReportToken","tags":["Tournaments"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"status":{"enum":["setup","running","completed","cancelled"],"type":"string"},"host":{"type":"object","properties":{"type":{"enum":["user","organization"],"type":"string"},"userId":{"anyOf":[{"type":"string"},{"type":"null"}]},"orgId":{"anyOf":[{"type":"string"},{"type":"null"}]},"displayName":{"type":"string"},"orgSlug":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["type","userId","orgId","displayName","orgSlug"]},"groupId":{"anyOf":[{"type":"string"},{"type":"null"}]},"groupSlug":{"anyOf":[{"type":"string"},{"type":"null"}]},"groupName":{"anyOf":[{"type":"string"},{"type":"null"}]},"pairingStyle":{"enum":["none","pod","swiss"],"type":"string"},"playMode":{"enum":["1v1","2v2"],"type":"string"},"deckSubmission":{"enum":["none","optional","required"],"type":"string"},"deckFormat":{"anyOf":[{"type":"string"},{"type":"null"}]},"startsAt":{"type":"string"},"endsAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"modules":{"type":"object","properties":{"pairing":{"type":"boolean"},"deckSubmission":{"type":"boolean"}},"required":["pairing","deckSubmission"]},"participantCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"pendingRequestCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"myRoles":{"type":"array","items":{"enum":["host","organizer","judge","participant"],"type":"string"}},"participantPreview":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"image":{"anyOf":[{"type":"string"},{"type":"null"}]},"gravatarHash":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["name","image","gravatarHash"]}},"winner":{"anyOf":[{"type":"object","properties":{"name":{"type":"string"},"legendImageId":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["name","legendImageId"]},{"type":"null"}]},"coverLegends":{"type":"array","items":{"type":"object","properties":{"printingId":{"type":"string"},"imageId":{"type":"string"}},"required":["printingId","imageId"]}},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"myDeckEntry":{"anyOf":[{"type":"object","properties":{"id":{"type":"string"},"state":{"enum":["editable","submitted","approved","checked","withdrawn"],"type":"string"},"reviewOutcome":{"anyOf":[{"enum":["ok","issue"],"type":"string"},{"type":"null"}]},"unlockRequested":{"type":"boolean"},"hasPlayerMessage":{"type":"boolean"}},"required":["id","state","reviewOutcome","unlockRequested","hasPlayerMessage"]},{"type":"null"}]},"currentRound":{"type":"integer","minimum":0,"maximum":9007199254740991},"scoringScheme":{"enum":["standard","three_pod_reduced"],"type":"string"},"byePoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"matchFormat":{"enum":["bo1","bo3"],"type":"string"},"winPoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"drawPoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"regionsEnabled":{"type":"boolean"},"deckPhase":{"enum":["open","closed","locked"],"type":"string"},"submissionsCloseAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"listLockMode":{"enum":["on_submit","at_deadline"],"type":"string"},"allowedSets":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}]},"selfRegistration":{"type":"boolean"},"reportToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"followToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"submissionToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"organizerInviteToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"judgeInviteToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"staff":{"type":"array","items":{"type":"object","properties":{"userId":{"type":"string"},"name":{"anyOf":[{"type":"string"},{"type":"null"}]},"role":{"enum":["organizer","judge"],"type":"string"},"source":{"enum":["grant","organization"],"type":"string"},"orgRole":{"anyOf":[{"enum":["owner","manager","judge"],"type":"string"},{"type":"null"}]},"addedAt":{"type":"string"}},"required":["userId","name","role","source","orgRole","addedAt"]}},"hasRounds":{"type":"boolean"}},"required":["id","name","status","host","groupId","groupSlug","groupName","pairingStyle","playMode","deckSubmission","deckFormat","startsAt","endsAt","modules","participantCount","pendingRequestCount","myRoles","participantPreview","winner","coverLegends","createdAt","updatedAt","myDeckEntry","currentRound","scoringScheme","byePoints","matchFormat","winPoints","drawPoints","regionsEnabled","deckPhase","submissionsCloseAt","listLockMode","allowedSets","selfRegistration","reportToken","followToken","submissionToken","organizerInviteToken","judgeInviteToken","staff","hasRounds"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"delete":{"operationId":"tournamentsContract.disableReportToken","tags":["Tournaments"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"status":{"enum":["setup","running","completed","cancelled"],"type":"string"},"host":{"type":"object","properties":{"type":{"enum":["user","organization"],"type":"string"},"userId":{"anyOf":[{"type":"string"},{"type":"null"}]},"orgId":{"anyOf":[{"type":"string"},{"type":"null"}]},"displayName":{"type":"string"},"orgSlug":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["type","userId","orgId","displayName","orgSlug"]},"groupId":{"anyOf":[{"type":"string"},{"type":"null"}]},"groupSlug":{"anyOf":[{"type":"string"},{"type":"null"}]},"groupName":{"anyOf":[{"type":"string"},{"type":"null"}]},"pairingStyle":{"enum":["none","pod","swiss"],"type":"string"},"playMode":{"enum":["1v1","2v2"],"type":"string"},"deckSubmission":{"enum":["none","optional","required"],"type":"string"},"deckFormat":{"anyOf":[{"type":"string"},{"type":"null"}]},"startsAt":{"type":"string"},"endsAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"modules":{"type":"object","properties":{"pairing":{"type":"boolean"},"deckSubmission":{"type":"boolean"}},"required":["pairing","deckSubmission"]},"participantCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"pendingRequestCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"myRoles":{"type":"array","items":{"enum":["host","organizer","judge","participant"],"type":"string"}},"participantPreview":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"image":{"anyOf":[{"type":"string"},{"type":"null"}]},"gravatarHash":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["name","image","gravatarHash"]}},"winner":{"anyOf":[{"type":"object","properties":{"name":{"type":"string"},"legendImageId":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["name","legendImageId"]},{"type":"null"}]},"coverLegends":{"type":"array","items":{"type":"object","properties":{"printingId":{"type":"string"},"imageId":{"type":"string"}},"required":["printingId","imageId"]}},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"myDeckEntry":{"anyOf":[{"type":"object","properties":{"id":{"type":"string"},"state":{"enum":["editable","submitted","approved","checked","withdrawn"],"type":"string"},"reviewOutcome":{"anyOf":[{"enum":["ok","issue"],"type":"string"},{"type":"null"}]},"unlockRequested":{"type":"boolean"},"hasPlayerMessage":{"type":"boolean"}},"required":["id","state","reviewOutcome","unlockRequested","hasPlayerMessage"]},{"type":"null"}]},"currentRound":{"type":"integer","minimum":0,"maximum":9007199254740991},"scoringScheme":{"enum":["standard","three_pod_reduced"],"type":"string"},"byePoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"matchFormat":{"enum":["bo1","bo3"],"type":"string"},"winPoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"drawPoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"regionsEnabled":{"type":"boolean"},"deckPhase":{"enum":["open","closed","locked"],"type":"string"},"submissionsCloseAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"listLockMode":{"enum":["on_submit","at_deadline"],"type":"string"},"allowedSets":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}]},"selfRegistration":{"type":"boolean"},"reportToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"followToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"submissionToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"organizerInviteToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"judgeInviteToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"staff":{"type":"array","items":{"type":"object","properties":{"userId":{"type":"string"},"name":{"anyOf":[{"type":"string"},{"type":"null"}]},"role":{"enum":["organizer","judge"],"type":"string"},"source":{"enum":["grant","organization"],"type":"string"},"orgRole":{"anyOf":[{"enum":["owner","manager","judge"],"type":"string"},{"type":"null"}]},"addedAt":{"type":"string"}},"required":["userId","name","role","source","orgRole","addedAt"]}},"hasRounds":{"type":"boolean"}},"required":["id","name","status","host","groupId","groupSlug","groupName","pairingStyle","playMode","deckSubmission","deckFormat","startsAt","endsAt","modules","participantCount","pendingRequestCount","myRoles","participantPreview","winner","coverLegends","createdAt","updatedAt","myDeckEntry","currentRound","scoringScheme","byePoints","matchFormat","winPoints","drawPoints","regionsEnabled","deckPhase","submissionsCloseAt","listLockMode","allowedSets","selfRegistration","reportToken","followToken","submissionToken","organizerInviteToken","judgeInviteToken","staff","hasRounds"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/tournaments/{id}/follow-token":{"post":{"operationId":"tournamentsContract.enableFollowToken","tags":["Tournaments"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"status":{"enum":["setup","running","completed","cancelled"],"type":"string"},"host":{"type":"object","properties":{"type":{"enum":["user","organization"],"type":"string"},"userId":{"anyOf":[{"type":"string"},{"type":"null"}]},"orgId":{"anyOf":[{"type":"string"},{"type":"null"}]},"displayName":{"type":"string"},"orgSlug":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["type","userId","orgId","displayName","orgSlug"]},"groupId":{"anyOf":[{"type":"string"},{"type":"null"}]},"groupSlug":{"anyOf":[{"type":"string"},{"type":"null"}]},"groupName":{"anyOf":[{"type":"string"},{"type":"null"}]},"pairingStyle":{"enum":["none","pod","swiss"],"type":"string"},"playMode":{"enum":["1v1","2v2"],"type":"string"},"deckSubmission":{"enum":["none","optional","required"],"type":"string"},"deckFormat":{"anyOf":[{"type":"string"},{"type":"null"}]},"startsAt":{"type":"string"},"endsAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"modules":{"type":"object","properties":{"pairing":{"type":"boolean"},"deckSubmission":{"type":"boolean"}},"required":["pairing","deckSubmission"]},"participantCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"pendingRequestCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"myRoles":{"type":"array","items":{"enum":["host","organizer","judge","participant"],"type":"string"}},"participantPreview":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"image":{"anyOf":[{"type":"string"},{"type":"null"}]},"gravatarHash":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["name","image","gravatarHash"]}},"winner":{"anyOf":[{"type":"object","properties":{"name":{"type":"string"},"legendImageId":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["name","legendImageId"]},{"type":"null"}]},"coverLegends":{"type":"array","items":{"type":"object","properties":{"printingId":{"type":"string"},"imageId":{"type":"string"}},"required":["printingId","imageId"]}},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"myDeckEntry":{"anyOf":[{"type":"object","properties":{"id":{"type":"string"},"state":{"enum":["editable","submitted","approved","checked","withdrawn"],"type":"string"},"reviewOutcome":{"anyOf":[{"enum":["ok","issue"],"type":"string"},{"type":"null"}]},"unlockRequested":{"type":"boolean"},"hasPlayerMessage":{"type":"boolean"}},"required":["id","state","reviewOutcome","unlockRequested","hasPlayerMessage"]},{"type":"null"}]},"currentRound":{"type":"integer","minimum":0,"maximum":9007199254740991},"scoringScheme":{"enum":["standard","three_pod_reduced"],"type":"string"},"byePoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"matchFormat":{"enum":["bo1","bo3"],"type":"string"},"winPoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"drawPoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"regionsEnabled":{"type":"boolean"},"deckPhase":{"enum":["open","closed","locked"],"type":"string"},"submissionsCloseAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"listLockMode":{"enum":["on_submit","at_deadline"],"type":"string"},"allowedSets":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}]},"selfRegistration":{"type":"boolean"},"reportToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"followToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"submissionToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"organizerInviteToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"judgeInviteToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"staff":{"type":"array","items":{"type":"object","properties":{"userId":{"type":"string"},"name":{"anyOf":[{"type":"string"},{"type":"null"}]},"role":{"enum":["organizer","judge"],"type":"string"},"source":{"enum":["grant","organization"],"type":"string"},"orgRole":{"anyOf":[{"enum":["owner","manager","judge"],"type":"string"},{"type":"null"}]},"addedAt":{"type":"string"}},"required":["userId","name","role","source","orgRole","addedAt"]}},"hasRounds":{"type":"boolean"}},"required":["id","name","status","host","groupId","groupSlug","groupName","pairingStyle","playMode","deckSubmission","deckFormat","startsAt","endsAt","modules","participantCount","pendingRequestCount","myRoles","participantPreview","winner","coverLegends","createdAt","updatedAt","myDeckEntry","currentRound","scoringScheme","byePoints","matchFormat","winPoints","drawPoints","regionsEnabled","deckPhase","submissionsCloseAt","listLockMode","allowedSets","selfRegistration","reportToken","followToken","submissionToken","organizerInviteToken","judgeInviteToken","staff","hasRounds"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"delete":{"operationId":"tournamentsContract.disableFollowToken","tags":["Tournaments"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"status":{"enum":["setup","running","completed","cancelled"],"type":"string"},"host":{"type":"object","properties":{"type":{"enum":["user","organization"],"type":"string"},"userId":{"anyOf":[{"type":"string"},{"type":"null"}]},"orgId":{"anyOf":[{"type":"string"},{"type":"null"}]},"displayName":{"type":"string"},"orgSlug":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["type","userId","orgId","displayName","orgSlug"]},"groupId":{"anyOf":[{"type":"string"},{"type":"null"}]},"groupSlug":{"anyOf":[{"type":"string"},{"type":"null"}]},"groupName":{"anyOf":[{"type":"string"},{"type":"null"}]},"pairingStyle":{"enum":["none","pod","swiss"],"type":"string"},"playMode":{"enum":["1v1","2v2"],"type":"string"},"deckSubmission":{"enum":["none","optional","required"],"type":"string"},"deckFormat":{"anyOf":[{"type":"string"},{"type":"null"}]},"startsAt":{"type":"string"},"endsAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"modules":{"type":"object","properties":{"pairing":{"type":"boolean"},"deckSubmission":{"type":"boolean"}},"required":["pairing","deckSubmission"]},"participantCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"pendingRequestCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"myRoles":{"type":"array","items":{"enum":["host","organizer","judge","participant"],"type":"string"}},"participantPreview":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"image":{"anyOf":[{"type":"string"},{"type":"null"}]},"gravatarHash":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["name","image","gravatarHash"]}},"winner":{"anyOf":[{"type":"object","properties":{"name":{"type":"string"},"legendImageId":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["name","legendImageId"]},{"type":"null"}]},"coverLegends":{"type":"array","items":{"type":"object","properties":{"printingId":{"type":"string"},"imageId":{"type":"string"}},"required":["printingId","imageId"]}},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"myDeckEntry":{"anyOf":[{"type":"object","properties":{"id":{"type":"string"},"state":{"enum":["editable","submitted","approved","checked","withdrawn"],"type":"string"},"reviewOutcome":{"anyOf":[{"enum":["ok","issue"],"type":"string"},{"type":"null"}]},"unlockRequested":{"type":"boolean"},"hasPlayerMessage":{"type":"boolean"}},"required":["id","state","reviewOutcome","unlockRequested","hasPlayerMessage"]},{"type":"null"}]},"currentRound":{"type":"integer","minimum":0,"maximum":9007199254740991},"scoringScheme":{"enum":["standard","three_pod_reduced"],"type":"string"},"byePoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"matchFormat":{"enum":["bo1","bo3"],"type":"string"},"winPoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"drawPoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"regionsEnabled":{"type":"boolean"},"deckPhase":{"enum":["open","closed","locked"],"type":"string"},"submissionsCloseAt":{"anyOf":[{"type":"string"},{"type":"null"}]},"listLockMode":{"enum":["on_submit","at_deadline"],"type":"string"},"allowedSets":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}]},"selfRegistration":{"type":"boolean"},"reportToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"followToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"submissionToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"organizerInviteToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"judgeInviteToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"staff":{"type":"array","items":{"type":"object","properties":{"userId":{"type":"string"},"name":{"anyOf":[{"type":"string"},{"type":"null"}]},"role":{"enum":["organizer","judge"],"type":"string"},"source":{"enum":["grant","organization"],"type":"string"},"orgRole":{"anyOf":[{"enum":["owner","manager","judge"],"type":"string"},{"type":"null"}]},"addedAt":{"type":"string"}},"required":["userId","name","role","source","orgRole","addedAt"]}},"hasRounds":{"type":"boolean"}},"required":["id","name","status","host","groupId","groupSlug","groupName","pairingStyle","playMode","deckSubmission","deckFormat","startsAt","endsAt","modules","participantCount","pendingRequestCount","myRoles","participantPreview","winner","coverLegends","createdAt","updatedAt","myDeckEntry","currentRound","scoringScheme","byePoints","matchFormat","winPoints","drawPoints","regionsEnabled","deckPhase","submissionsCloseAt","listLockMode","allowedSets","selfRegistration","reportToken","followToken","submissionToken","organizerInviteToken","judgeInviteToken","staff","hasRounds"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"Tournament not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/unsubscribe/preview":{"get":{"operationId":"unsubscribeContract.preview","tags":["Account"],"parameters":[{"name":"token","in":"query","required":true,"schema":{"type":"string","minLength":1},"allowEmptyValue":true,"allowReserved":true}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"valid":{"type":"boolean"},"channel":{"anyOf":[{"enum":["tradeMatches","tradeRequests","tradeStatus"],"type":"string"},{"type":"null"}]},"channelLabel":{"anyOf":[{"type":"string"},{"type":"null"}]},"alreadyUnsubscribed":{"type":"boolean"}},"required":["valid","channel","channelLabel","alreadyUnsubscribed"]}}}}},"security":[]}},"/api/v1/unsubscribe":{"post":{"operationId":"unsubscribeContract.confirm","tags":["Account"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"token":{"type":"string","minLength":1}},"required":["token"]}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"channel":{"enum":["tradeMatches","tradeRequests","tradeStatus"],"type":"string"},"channelLabel":{"type":"string"}},"required":["channel","channelLabel"]}}}},"400":{"description":"400","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"BAD_REQUEST"},"status":{"const":400},"message":{"type":"string","default":"This unsubscribe link is invalid or has expired."},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}},"security":[]}},"/api/v1/users/me/share":{"get":{"operationId":"userShareContract.get","tags":["User Share"],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"shareToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"isPublic":{"type":"boolean"}},"required":["shareToken","isPublic"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"post":{"operationId":"userShareContract.enable","tags":["User Share"],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"shareToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"isPublic":{"type":"boolean"}},"required":["shareToken","isPublic"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"User not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}},"delete":{"operationId":"userShareContract.disable","tags":["User Share"],"responses":{"204":{"description":"OK","content":{"application/json":{"schema":{"anyOf":[{},{"not":{}}]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"User not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}},"/api/v1/users/me/share/rotate":{"post":{"operationId":"userShareContract.rotate","tags":["User Share"],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"shareToken":{"anyOf":[{"type":"string"},{"type":"null"}]},"isPublic":{"type":"boolean"}},"required":["shareToken","isPublic"]}}}},"401":{"description":"401","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"UNAUTHORIZED"},"status":{"const":401},"message":{"type":"string","default":"Unauthorized"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"403":{"description":"403","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"FORBIDDEN"},"status":{"const":403},"message":{"type":"string","default":"Forbidden"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}},"404":{"description":"404","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"defined":{"const":true},"code":{"const":"NOT_FOUND"},"status":{"const":404},"message":{"type":"string","default":"User not found"},"data":{}},"required":["defined","code","status","message"]},{"type":"object","properties":{"defined":{"const":false},"code":{"type":"string"},"status":{"type":"number"},"message":{"type":"string"},"data":{}},"required":["defined","code","status","message"]}]}}}}}}}},"security":[{"cookieAuth":[]}],"components":{"securitySchemes":{"cookieAuth":{"type":"apiKey","in":"cookie","name":"better-auth.session_token"},"bearerAuth":{"type":"http","scheme":"bearer"},"adminAuth":{"type":"apiKey","in":"cookie","name":"better-auth.session_token","description":"Session cookie of a user with the admin role."}}}}