{"openapi":"3.1.0","info":{"title":"FastAPI","version":"0.1.1"},"paths":{"/account-clusters/initiate":{"post":{"tags":["Account Clusters"],"summary":"Initiate Account Link","description":"Initiate a request to link another account.\nSends a verification code to the target account's email.","operationId":"initiate_account_link_account_clusters_initiate_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClusterJoinRequestCreate"}}},"required":true},"responses":{"201":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClusterJoinRequestResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"security":[{"OAuth2PasswordBearer":[]}]}},"/account-clusters/verify":{"post":{"tags":["Account Clusters"],"summary":"Verify Account Link","description":"Verify the code and complete the account linking.\nThe verification code is sent to the target account's email.\nUser must be logged into either the initiator or target account.","operationId":"verify_account_link_account_clusters_verify_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/VerifyJoinRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/VerifyJoinResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"security":[{"OAuth2PasswordBearer":[]}]}},"/account-clusters/my-cluster":{"get":{"tags":["Account Clusters"],"summary":"Get My Cluster","description":"Get information about the cluster the current user belongs to.\nReturns None if the user is not in any cluster.","operationId":"get_my_cluster_account_clusters_my_cluster_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClusterInfo"}}}}},"security":[{"OAuth2PasswordBearer":[]}]}},"/account-clusters/leave":{"delete":{"tags":["Account Clusters"],"summary":"Leave Account Cluster","description":"Remove the current user from their account cluster.\nThis is reversible - the user can re-link accounts later.","operationId":"leave_account_cluster_account_clusters_leave_delete","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/LeaveClusterResponse"}}}}},"security":[{"OAuth2PasswordBearer":[]}]}},"/achievements":{"post":{"tags":["Achievements"],"summary":"Create Achievement","operationId":"create_achievement_achievements_post","security":[{"OAuth2PasswordBearer":[]}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AchievementCreate"}}}},"responses":{"201":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Achievement"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"get":{"tags":["Achievements"],"summary":"Get Achievements","description":"Get all achievements (filtered by user permissions)","operationId":"get_achievements_achievements_get","security":[{"OAuth2PasswordBearer":[]}],"parameters":[{"name":"skip","in":"query","required":false,"schema":{"type":"integer","minimum":0,"default":0,"title":"Skip"}},{"name":"limit","in":"query","required":false,"schema":{"type":"integer","maximum":100,"minimum":1,"default":100,"title":"Limit"}},{"name":"sort_by","in":"query","required":false,"schema":{"type":"string","description":"Field to sort by","default":"sent_at","title":"Sort By"},"description":"Field to sort by"},{"name":"sort_order","in":"query","required":false,"schema":{"type":"string","pattern":"^(asc|desc)$","default":"desc","title":"Sort Order"}},{"name":"id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Id"}},{"name":"sender_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Sender Id"}},{"name":"receiver_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Receiver Id"}},{"name":"achievement_type","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Achievement Type"}},{"name":"message","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message"}},{"name":"sent_at_from","in":"query","required":false,"schema":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Sent At From"}},{"name":"sent_at_to","in":"query","required":false,"schema":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Sent At To"}}],"requestBody":{"content":{"application/json":{"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Id In"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AchievementResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/applications":{"post":{"tags":["Applications"],"summary":"Create Application","operationId":"create_application_applications_post","security":[{"OAuth2PasswordBearer":[]}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApplicationCreate"}}}},"responses":{"201":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Application"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"get":{"tags":["Applications"],"summary":"Get Applications","operationId":"get_applications_applications_get","security":[{"OAuth2PasswordBearer":[]}],"parameters":[{"name":"skip","in":"query","required":false,"schema":{"type":"integer","default":0,"title":"Skip"}},{"name":"limit","in":"query","required":false,"schema":{"type":"integer","default":100,"title":"Limit"}},{"name":"email","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Email"}},{"name":"citizen_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Citizen Id"}},{"name":"popup_city_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Popup City Id"}},{"name":"status","in":"query","required":false,"schema":{"anyOf":[{"$ref":"#/components/schemas/ApplicationStatus"},{"type":"null"}],"title":"Status"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Application"},"title":"Response Get Applications Applications Get"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/applications/residencies":{"get":{"tags":["Applications"],"summary":"Get Residencies","operationId":"get_residencies_applications_residencies_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"items":{"$ref":"#/components/schemas/Residency"},"type":"array","title":"Response Get Residencies Applications Residencies Get"}}}}},"security":[{"OAuth2PasswordBearer":[]}]}},"/applications/attendees_directory/{popup_city_id}":{"get":{"tags":["Applications"],"summary":"Get Attendees Directory","operationId":"get_attendees_directory_applications_attendees_directory__popup_city_id__get","security":[{"OAuth2PasswordBearer":[]}],"parameters":[{"name":"popup_city_id","in":"path","required":true,"schema":{"type":"integer","title":"Popup City Id"}},{"name":"skip","in":"query","required":false,"schema":{"type":"integer","default":0,"title":"Skip"}},{"name":"limit","in":"query","required":false,"schema":{"type":"integer","default":100,"title":"Limit"}},{"name":"q","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Q"}},{"name":"email","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Email"}},{"name":"brings_kids","in":"query","required":false,"schema":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Brings Kids"}},{"name":"participation","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Participation"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaginatedResponse_AttendeesDirectory_"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/applications/attendees_directory/{popup_city_id}/csv":{"get":{"tags":["Applications"],"summary":"Get Attendees Directory Csv","operationId":"get_attendees_directory_csv_applications_attendees_directory__popup_city_id__csv_get","security":[{"OAuth2PasswordBearer":[]}],"parameters":[{"name":"popup_city_id","in":"path","required":true,"schema":{"type":"integer","title":"Popup City Id"}},{"name":"q","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Q"}},{"name":"email","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Email"}},{"name":"brings_kids","in":"query","required":false,"schema":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Brings Kids"}},{"name":"participation","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Participation"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/applications/world-addresses/{popup_city_id}":{"get":{"tags":["Applications"],"summary":"Get World Addresses Csv","description":"Get all citizens with world addresses from applications in a popup city as CSV\n\nAuthentication: API key required via X-API-Key header","operationId":"get_world_addresses_csv_applications_world_addresses__popup_city_id__get","parameters":[{"name":"popup_city_id","in":"path","required":true,"schema":{"type":"integer","title":"Popup City Id"}},{"name":"skip","in":"query","required":false,"schema":{"type":"integer","default":0,"title":"Skip"}},{"name":"limit","in":"query","required":false,"schema":{"type":"integer","default":9999,"title":"Limit"}},{"name":"q","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Q"}},{"name":"email","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Email"}},{"name":"brings_kids","in":"query","required":false,"schema":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Brings Kids"}},{"name":"participation","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Participation"}},{"name":"x-api-key","in":"header","required":true,"schema":{"type":"string","title":"X-Api-Key"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/applications/search/email":{"get":{"tags":["Applications"],"summary":"Get Latest Application By Email","operationId":"get_latest_application_by_email_applications_search_email_get","parameters":[{"name":"email","in":"query","required":true,"schema":{"type":"string","title":"Email"}},{"name":"x-api-key","in":"header","required":true,"schema":{"type":"string","title":"X-Api-Key"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApplicationWithPopupCity"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/applications/{application_id}":{"get":{"tags":["Applications"],"summary":"Get Application","operationId":"get_application_applications__application_id__get","security":[{"OAuth2PasswordBearer":[]}],"parameters":[{"name":"application_id","in":"path","required":true,"schema":{"type":"integer","title":"Application Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Application"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Applications"],"summary":"Update Application","operationId":"update_application_applications__application_id__put","security":[{"OAuth2PasswordBearer":[]}],"parameters":[{"name":"application_id","in":"path","required":true,"schema":{"type":"integer","title":"Application Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApplicationUpdate"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Application"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/applications/{application_id}/attendees":{"post":{"tags":["Applications"],"summary":"Create Attendee","operationId":"create_attendee_applications__application_id__attendees_post","security":[{"OAuth2PasswordBearer":[]}],"parameters":[{"name":"application_id","in":"path","required":true,"schema":{"type":"integer","title":"Application Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AttendeeCreate"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Application"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/applications/{application_id}/attendees/{attendee_id}":{"put":{"tags":["Applications"],"summary":"Update Attendee","operationId":"update_attendee_applications__application_id__attendees__attendee_id__put","security":[{"OAuth2PasswordBearer":[]}],"parameters":[{"name":"application_id","in":"path","required":true,"schema":{"type":"integer","title":"Application Id"}},{"name":"attendee_id","in":"path","required":true,"schema":{"type":"integer","title":"Attendee Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AttendeeUpdate"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Application"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Applications"],"summary":"Delete Attendee","operationId":"delete_attendee_applications__application_id__attendees__attendee_id__delete","security":[{"OAuth2PasswordBearer":[]}],"parameters":[{"name":"application_id","in":"path","required":true,"schema":{"type":"integer","title":"Application Id"}},{"name":"attendee_id","in":"path","required":true,"schema":{"type":"integer","title":"Attendee Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Application"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/attendees/search/email":{"get":{"tags":["Attendees"],"summary":"Search Attendees By Email","operationId":"search_attendees_by_email_attendees_search_email_get","parameters":[{"name":"email","in":"query","required":true,"schema":{"type":"string","title":"Email"}},{"name":"x-api-key","in":"header","required":true,"schema":{"type":"string","title":"X-Api-Key"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Attendee"},"title":"Response Search Attendees By Email Attendees Search Email Get"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/attendees/tickets":{"get":{"tags":["Attendees"],"summary":"Get Tickets","description":"Return tickets for the attendee email.\n\nAuthentication rules:\n1. A static key defined in settings (for backward compatibility).\n2. A dynamic key stored in `attendee_ticket_api_keys` table **matching the same email**.","operationId":"get_tickets_attendees_tickets_get","parameters":[{"name":"email","in":"query","required":true,"schema":{"type":"string","title":"Email"}},{"name":"x-api-key","in":"header","required":true,"schema":{"type":"string","title":"X-Api-Key"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/AttendeeWithTickets"},"title":"Response Get Tickets Attendees Tickets Get"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/attendees/tickets/api-keys":{"post":{"tags":["Attendees"],"summary":"Generate Ticket Api Key","description":"Generate a one-off API key linked to an email.\n\nThe caller must provide a valid admin ATTENDEES_MANAGEMENT_API_KEY via the `X-API-Key` header.\nThe generated key will later be used to authenticate calls to `/attendees/tickets`.","operationId":"generate_ticket_api_key_attendees_tickets_api_keys_post","parameters":[{"name":"x-api-key","in":"header","required":true,"schema":{"type":"string","title":"X-Api-Key"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TicketApiKeyCreate"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TicketApiKeyResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/check-in/qr":{"post":{"tags":["Check In"],"summary":"New Qr Check In","operationId":"new_qr_check_in_check_in_qr_post","parameters":[{"name":"x-api-key","in":"header","required":true,"schema":{"type":"string","title":"X-Api-Key"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewQRCheckIn"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/CheckInResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/check-in/virtual":{"post":{"tags":["Check In"],"summary":"New Virtual Check In","operationId":"new_virtual_check_in_check_in_virtual_post","parameters":[{"name":"x-api-key","in":"header","required":true,"schema":{"type":"string","title":"X-Api-Key"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewVirtualCheckIn"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/CheckInResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/citizens/signup":{"post":{"tags":["Citizens"],"summary":"Signup","operationId":"signup_citizens_signup_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CitizenCreate"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Citizen"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/citizens/authenticate":{"post":{"tags":["Citizens"],"summary":"Authenticate","operationId":"authenticate_citizens_authenticate_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Authenticate"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/citizens/authenticate-third-party":{"post":{"tags":["Citizens"],"summary":"Authenticate Third Party","operationId":"authenticate_third_party_citizens_authenticate_third_party_post","parameters":[{"name":"x-api-key","in":"header","required":true,"schema":{"type":"string","title":"X-Api-Key"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AuthenticateThirdParty"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/citizens/authenticate-edgeclaw":{"post":{"tags":["Citizens"],"summary":"Authenticate Edgeclaw","operationId":"authenticate_edgeclaw_citizens_authenticate_edgeclaw_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AuthenticateThirdParty"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/citizens/login":{"post":{"tags":["Citizens"],"summary":"Login","operationId":"login_citizens_login_post","parameters":[{"name":"email","in":"query","required":true,"schema":{"type":"string","title":"Email"}},{"name":"spice","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Spice"}},{"name":"code","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Code"}},{"name":"world_address","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"World Address"}},{"name":"verified_upon_login","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Verified Upon Login"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/citizens/app-logout":{"post":{"tags":["Citizens"],"summary":"Logout","operationId":"logout_citizens_app_logout_post","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}},"security":[{"OAuth2PasswordBearer":[]}]}},"/citizens":{"get":{"tags":["Citizens"],"summary":"Get Citizens","operationId":"get_citizens_citizens_get","security":[{"OAuth2PasswordBearer":[]}],"parameters":[{"name":"skip","in":"query","required":false,"schema":{"type":"integer","minimum":0,"default":0,"title":"Skip"}},{"name":"limit","in":"query","required":false,"schema":{"type":"integer","maximum":100,"minimum":1,"default":100,"title":"Limit"}},{"name":"id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Id"}},{"name":"primary_email","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Primary Email"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Citizen"},"title":"Response Get Citizens Citizens Get"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/citizens/my-poaps":{"get":{"tags":["Citizens"],"summary":"Get My Poaps","operationId":"get_my_poaps_citizens_my_poaps_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/CitizenPoaps"}}}}},"security":[{"OAuth2PasswordBearer":[]}]}},"/citizens/profile":{"get":{"tags":["Citizens"],"summary":"Get Profile","operationId":"get_profile_citizens_profile_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/CitizenProfile"}}}}},"security":[{"OAuth2PasswordBearer":[]}]}},"/citizens/edge-mapped":{"get":{"tags":["Citizens"],"summary":"Get Edge Mapped","operationId":"get_edge_mapped_citizens_edge_mapped_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}},"security":[{"OAuth2PasswordBearer":[]}]}},"/citizens/{citizen_id}":{"get":{"tags":["Citizens"],"summary":"Get Citizen","operationId":"get_citizen_citizens__citizen_id__get","security":[{"OAuth2PasswordBearer":[]}],"parameters":[{"name":"citizen_id","in":"path","required":true,"schema":{"type":"integer","title":"Citizen Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Citizen"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/citizens/me":{"put":{"tags":["Citizens"],"summary":"Update Me","operationId":"update_me_citizens_me_put","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CitizenUpdate"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Citizen"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"security":[{"OAuth2PasswordBearer":[]}]}},"/citizens/email/{email}":{"get":{"tags":["Citizens"],"summary":"Get Citizen By Email","operationId":"get_citizen_by_email_citizens_email__email__get","parameters":[{"name":"email","in":"path","required":true,"schema":{"type":"string","title":"Email"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Citizen"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/coupon-codes":{"get":{"tags":["Coupon Codes"],"summary":"Get Coupon Code","operationId":"get_coupon_code_coupon_codes_get","security":[{"OAuth2PasswordBearer":[]}],"parameters":[{"name":"code","in":"query","required":true,"schema":{"type":"string","title":"Code"}},{"name":"popup_city_id","in":"query","required":true,"schema":{"type":"integer","title":"Popup City Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/CouponCode"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"post":{"tags":["Coupon Codes"],"summary":"Create Coupon Code","operationId":"create_coupon_code_coupon_codes_post","parameters":[{"name":"x-api-key","in":"header","required":true,"schema":{"type":"string","title":"X-Api-Key"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CouponCodeCreate"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/CouponCode"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/groups":{"get":{"tags":["Groups"],"summary":"Get Groups","operationId":"get_groups_groups_get","security":[{"OAuth2PasswordBearer":[]}],"parameters":[{"name":"skip","in":"query","required":false,"schema":{"type":"integer","minimum":0,"default":0,"title":"Skip"}},{"name":"limit","in":"query","required":false,"schema":{"type":"integer","maximum":100,"minimum":1,"default":100,"title":"Limit"}},{"name":"sort_by","in":"query","required":false,"schema":{"type":"string","description":"Field to sort by","default":"name","title":"Sort By"},"description":"Field to sort by"},{"name":"sort_order","in":"query","required":false,"schema":{"type":"string","pattern":"^(asc|desc)$","default":"asc","title":"Sort Order"}},{"name":"id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Id"}},{"name":"name","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"}},{"name":"slug","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"}},{"name":"popup_city_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Popup City Id"}}],"requestBody":{"content":{"application/json":{"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Id In"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Group"},"title":"Response Get Groups Groups Get"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/groups/{group_id}":{"get":{"tags":["Groups"],"summary":"Get Group","operationId":"get_group_groups__group_id__get","security":[{"OAuth2PasswordBearer":[]}],"parameters":[{"name":"group_id","in":"path","required":true,"schema":{"type":"integer","title":"Group Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/GroupWithMembers"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Groups"],"summary":"Update Group","operationId":"update_group_groups__group_id__put","security":[{"OAuth2PasswordBearer":[]}],"parameters":[{"name":"group_id","in":"path","required":true,"schema":{"type":"integer","title":"Group Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GroupUpdate"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Group"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/groups/aux/{group_slug}":{"get":{"tags":["Groups"],"summary":"Get Group Aux","operationId":"get_group_aux_groups_aux__group_slug__get","parameters":[{"name":"group_slug","in":"path","required":true,"schema":{"type":"string","title":"Group Slug"}},{"name":"api-key","in":"header","required":false,"schema":{"type":"string","title":"Api-Key"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Group"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/groups/{group_id}/new_member":{"post":{"tags":["Groups"],"summary":"New Member","operationId":"new_member_groups__group_id__new_member_post","security":[{"OAuth2PasswordBearer":[]}],"parameters":[{"name":"group_id","in":"path","required":true,"schema":{"anyOf":[{"type":"integer"},{"type":"string"}],"title":"Group Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GroupMember"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApplicationWithAuth"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/groups/{group_id}/members":{"post":{"tags":["Groups"],"summary":"Create Member","operationId":"create_member_groups__group_id__members_post","security":[{"OAuth2PasswordBearer":[]}],"parameters":[{"name":"group_id","in":"path","required":true,"schema":{"type":"integer","title":"Group Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GroupMember"}}}},"responses":{"201":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/MemberWithProducts"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/groups/{group_id}/members/batch":{"post":{"tags":["Groups"],"summary":"Create Members Batch","description":"Create multiple members in a group at once, with partial success handling","operationId":"create_members_batch_groups__group_id__members_batch_post","security":[{"OAuth2PasswordBearer":[]}],"parameters":[{"name":"group_id","in":"path","required":true,"schema":{"type":"integer","title":"Group Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GroupMemberBatch"}}}},"responses":{"207":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/MemberBatchResult"},"title":"Response Create Members Batch Groups  Group Id  Members Batch Post"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/groups/{group_id}/members/{citizen_id}":{"put":{"tags":["Groups"],"summary":"Update Member","operationId":"update_member_groups__group_id__members__citizen_id__put","security":[{"OAuth2PasswordBearer":[]}],"parameters":[{"name":"group_id","in":"path","required":true,"schema":{"type":"integer","title":"Group Id"}},{"name":"citizen_id","in":"path","required":true,"schema":{"type":"integer","title":"Citizen Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GroupMemberUpdate"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/MemberWithProducts"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Groups"],"summary":"Delete Member","operationId":"delete_member_groups__group_id__members__citizen_id__delete","security":[{"OAuth2PasswordBearer":[]}],"parameters":[{"name":"group_id","in":"path","required":true,"schema":{"type":"integer","title":"Group Id"}},{"name":"citizen_id","in":"path","required":true,"schema":{"type":"integer","title":"Citizen Id"}}],"responses":{"204":{"description":"Successful Response"},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/payments":{"get":{"tags":["Payments"],"summary":"Get Payments","operationId":"get_payments_payments_get","security":[{"OAuth2PasswordBearer":[]}],"parameters":[{"name":"skip","in":"query","required":false,"schema":{"type":"integer","minimum":0,"default":0,"title":"Skip"}},{"name":"limit","in":"query","required":false,"schema":{"type":"integer","maximum":100,"minimum":1,"default":100,"title":"Limit"}},{"name":"id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Id"}},{"name":"application_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Application Id"}},{"name":"citizen_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Citizen Id"}},{"name":"external_id","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"External Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Payment"},"title":"Response Get Payments Payments Get"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"post":{"tags":["Payments"],"summary":"Create Payment","operationId":"create_payment_payments_post","security":[{"OAuth2PasswordBearer":[]}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaymentCreate"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Payment"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/payments/{payment_id}":{"get":{"tags":["Payments"],"summary":"Get Payment","operationId":"get_payment_payments__payment_id__get","security":[{"OAuth2PasswordBearer":[]}],"parameters":[{"name":"payment_id","in":"path","required":true,"schema":{"type":"integer","title":"Payment Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Payment"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/payments/preview":{"post":{"tags":["Payments"],"summary":"Preview Payment","operationId":"preview_payment_payments_preview_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaymentCreate"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaymentPreview"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"security":[{"OAuth2PasswordBearer":[]}]}},"/popups":{"get":{"tags":["Popups"],"summary":"Get Popup Cities","operationId":"get_popup_cities_popups_get","security":[{"OAuth2PasswordBearer":[]}],"parameters":[{"name":"skip","in":"query","required":false,"schema":{"type":"integer","default":0,"title":"Skip"}},{"name":"limit","in":"query","required":false,"schema":{"type":"integer","default":100,"title":"Limit"}},{"name":"sort_by","in":"query","required":false,"schema":{"type":"string","description":"Field to sort by","default":"portal_order","title":"Sort By"},"description":"Field to sort by"},{"name":"sort_order","in":"query","required":false,"schema":{"type":"string","pattern":"^(asc|desc)$","default":"asc","title":"Sort Order"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/PopUpCity"},"title":"Response Get Popup Cities Popups Get"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/popups/{popup_city_id}":{"get":{"tags":["Popups"],"summary":"Get Popup City","operationId":"get_popup_city_popups__popup_city_id__get","security":[{"OAuth2PasswordBearer":[]}],"parameters":[{"name":"popup_city_id","in":"path","required":true,"schema":{"type":"integer","title":"Popup City Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PopUpCity"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/popups/{popup_city_id}/send_reminder_emails":{"post":{"tags":["Popups"],"summary":"Send Reminder Emails","operationId":"send_reminder_emails_popups__popup_city_id__send_reminder_emails_post","parameters":[{"name":"popup_city_id","in":"path","required":true,"schema":{"type":"integer","title":"Popup City Id"}},{"name":"x-api-key","in":"header","required":true,"schema":{"type":"string","title":"X-Api-Key"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/organizations/organizations":{"get":{"tags":["Organizations"],"summary":"Get Organizations","operationId":"get_organizations_organizations_organizations_get","security":[{"OAuth2PasswordBearer":[]}],"parameters":[{"name":"skip","in":"query","required":false,"schema":{"type":"integer","default":0,"title":"Skip"}},{"name":"limit","in":"query","required":false,"schema":{"type":"integer","default":100,"title":"Limit"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Organization"},"title":"Response Get Organizations Organizations Organizations Get"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/products":{"get":{"tags":["Products"],"summary":"Get Products","operationId":"get_products_products_get","security":[{"OAuth2PasswordBearer":[]}],"parameters":[{"name":"skip","in":"query","required":false,"schema":{"type":"integer","minimum":0,"default":0,"title":"Skip"}},{"name":"limit","in":"query","required":false,"schema":{"type":"integer","maximum":100,"minimum":1,"default":100,"title":"Limit"}},{"name":"sort_by","in":"query","required":false,"schema":{"type":"string","description":"Field to sort by","default":"name","title":"Sort By"},"description":"Field to sort by"},{"name":"sort_order","in":"query","required":false,"schema":{"type":"string","pattern":"^(asc|desc)$","default":"asc","title":"Sort Order"}},{"name":"id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Id"}},{"name":"is_active","in":"query","required":false,"schema":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Is Active"}},{"name":"name","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"}},{"name":"category","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Category"}},{"name":"popup_city_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Popup City Id"}}],"requestBody":{"content":{"application/json":{"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Id In"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Product"},"title":"Response Get Products Products Get"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/products/{product_id}":{"get":{"tags":["Products"],"summary":"Get Product","operationId":"get_product_products__product_id__get","security":[{"OAuth2PasswordBearer":[]}],"parameters":[{"name":"product_id","in":"path","required":true,"schema":{"type":"integer","title":"Product Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Product"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/webhooks/update_status":{"post":{"tags":["Webhooks"],"summary":"Update Status Webhook","operationId":"update_status_webhook_webhooks_update_status_post","parameters":[{"name":"secret","in":"header","required":true,"schema":{"type":"string","description":"Secret","title":"Secret"},"description":"Secret"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WebhookPayload"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/webhooks/send_email":{"post":{"tags":["Webhooks"],"summary":"Send Email Webhook","operationId":"send_email_webhook_webhooks_send_email_post","parameters":[{"name":"event","in":"query","required":true,"schema":{"type":"string","description":"Email event","title":"Event"},"description":"Email event"},{"name":"fields","in":"query","required":true,"schema":{"type":"string","description":"Template fields","title":"Fields"},"description":"Template fields"},{"name":"unique","in":"query","required":false,"schema":{"type":"boolean","description":"Verify if the email is unique","default":true,"title":"Unique"},"description":"Verify if the email is unique"},{"name":"delay","in":"query","required":false,"schema":{"type":"integer","description":"Delay in minutes","default":0,"title":"Delay"},"description":"Delay in minutes"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WebhookPayload"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/webhooks/simplefi":{"post":{"tags":["Webhooks"],"summary":"Simplefi Webhook","operationId":"simplefi_webhook_webhooks_simplefi_post","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/world-builders":{"post":{"tags":["World Builders"],"summary":"Create World Builder","operationId":"create_world_builder_world_builders_post","parameters":[{"name":"x-api-key","in":"header","required":true,"schema":{"type":"string","title":"X-Api-Key"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorldBuilderCreate"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorldBuilder"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/world-builders/score":{"get":{"tags":["World Builders"],"summary":"Get World Builder Score","operationId":"get_world_builder_score_world_builders_score_get","parameters":[{"name":"address","in":"query","required":true,"schema":{"type":"string","title":"Address"}},{"name":"x-api-key","in":"header","required":true,"schema":{"type":"string","title":"X-Api-Key"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorldBuilderScore"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/agent/buy-ticket":{"post":{"tags":["Agent"],"summary":"Buy Ticket","operationId":"buy_ticket_agent_buy_ticket_post","security":[{"OAuth2PasswordBearer":[]}],"parameters":[{"name":"PAYMENT-SIGNATURE","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Payment-Signature"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaymentCreate"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Payment"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}}},"components":{"schemas":{"Achievement":{"properties":{"sender_id":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Sender Id"},"receiver_id":{"type":"integer","title":"Receiver Id"},"achievement_type":{"type":"string","title":"Achievement Type"},"badge_type":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Badge Type"},"sent_at":{"type":"string","format":"date-time","title":"Sent At"},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message"},"id":{"type":"integer","title":"Id"}},"type":"object","required":["receiver_id","achievement_type","sent_at","id"],"title":"Achievement"},"AchievementCreate":{"properties":{"receiver_id":{"type":"integer","title":"Receiver Id"},"achievement_type":{"type":"string","title":"Achievement Type"},"badge_type":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Badge Type"},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message"},"privacy":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Privacy","default":false}},"type":"object","required":["receiver_id","achievement_type"],"title":"AchievementCreate"},"AchievementResponse":{"properties":{"sent_achievements":{"items":{"$ref":"#/components/schemas/AchievementWithCitizen"},"type":"array","title":"Sent Achievements"},"received_achievements":{"items":{"$ref":"#/components/schemas/AchievementWithCitizen"},"type":"array","title":"Received Achievements"}},"type":"object","required":["sent_achievements","received_achievements"],"title":"AchievementResponse"},"AchievementWithCitizen":{"properties":{"achievement":{"$ref":"#/components/schemas/Achievement"},"citizen":{"anyOf":[{"$ref":"#/components/schemas/Citizen"},{"type":"null"}]}},"type":"object","required":["achievement"],"title":"AchievementWithCitizen"},"Application":{"properties":{"first_name":{"type":"string","title":"First Name"},"last_name":{"type":"string","title":"Last Name"},"telegram":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Telegram"},"organization":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Organization"},"role":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Role"},"gender":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Gender"},"age":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Age"},"social_media":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Social Media"},"residence":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Residence"},"local_resident":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Local Resident"},"eth_address":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Eth Address"},"duration":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Duration"},"video_url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Video Url"},"payment_capacity":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Payment Capacity"},"github_profile":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Github Profile"},"minting_link":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Minting Link"},"area_of_expertise":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Area Of Expertise"},"preferred_dates":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Preferred Dates"},"hackathon_interest":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Hackathon Interest"},"host_session":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Host Session"},"personal_goals":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Personal Goals"},"referral":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Referral"},"info_not_shared":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Info Not Shared"},"investor":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Investor"},"is_renter":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Is Renter"},"booking_confirmation":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Booking Confirmation"},"brings_spouse":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Brings Spouse"},"spouse_info":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Spouse Info"},"spouse_email":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Spouse Email"},"brings_kids":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Brings Kids"},"kids_info":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Kids Info"},"interested_in_child_led_projects":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Interested In Child Led Projects"},"builder_boolean":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Builder Boolean"},"builder_description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Builder Description"},"scholarship_request":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Scholarship Request"},"scholarship_details":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Scholarship Details"},"scholarship_video_url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Scholarship Video Url"},"residencies_interested_in":{"anyOf":[{"items":{"$ref":"#/components/schemas/Residency"},"type":"array"},{"type":"null"}],"title":"Residencies Interested In"},"residencies_text":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Residencies Text"},"requested_discount":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Requested Discount"},"status":{"anyOf":[{"$ref":"#/components/schemas/ApplicationStatus"},{"type":"null"}]},"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"},"citizen_id":{"type":"integer","title":"Citizen Id"},"popup_city_id":{"type":"integer","title":"Popup City Id"},"group_id":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Group Id"},"email":{"type":"string","title":"Email"},"submitted_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Submitted At"},"created_by_leader":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Created By Leader"},"auto_approved":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Auto Approved"},"id":{"type":"integer","title":"Id"},"attendees":{"anyOf":[{"items":{"$ref":"#/components/schemas/Attendee"},"type":"array"},{"type":"null"}],"title":"Attendees"},"discount_assigned":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Discount Assigned"},"products":{"anyOf":[{"items":{"$ref":"#/components/schemas/Product"},"type":"array"},{"type":"null"}],"title":"Products"},"credit":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Credit"},"red_flag":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Red Flag"}},"type":"object","required":["first_name","last_name","citizen_id","popup_city_id","email","id"],"title":"Application"},"ApplicationCreate":{"properties":{"first_name":{"type":"string","title":"First Name"},"last_name":{"type":"string","title":"Last Name"},"telegram":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Telegram"},"organization":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Organization"},"role":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Role"},"gender":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Gender"},"age":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Age"},"social_media":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Social Media"},"residence":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Residence"},"local_resident":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Local Resident"},"eth_address":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Eth Address"},"duration":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Duration"},"video_url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Video Url"},"payment_capacity":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Payment Capacity"},"github_profile":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Github Profile"},"minting_link":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Minting Link"},"area_of_expertise":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Area Of Expertise"},"preferred_dates":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Preferred Dates"},"hackathon_interest":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Hackathon Interest"},"host_session":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Host Session"},"personal_goals":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Personal Goals"},"referral":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Referral"},"info_not_shared":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Info Not Shared"},"investor":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Investor"},"is_renter":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Is Renter"},"booking_confirmation":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Booking Confirmation"},"brings_spouse":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Brings Spouse"},"spouse_info":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Spouse Info"},"spouse_email":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Spouse Email"},"brings_kids":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Brings Kids"},"kids_info":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Kids Info"},"interested_in_child_led_projects":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Interested In Child Led Projects"},"builder_boolean":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Builder Boolean"},"builder_description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Builder Description"},"scholarship_request":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Scholarship Request"},"scholarship_details":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Scholarship Details"},"scholarship_video_url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Scholarship Video Url"},"residencies_interested_in":{"anyOf":[{"items":{"$ref":"#/components/schemas/Residency"},"type":"array"},{"type":"null"}],"title":"Residencies Interested In"},"residencies_text":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Residencies Text"},"requested_discount":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Requested Discount"},"status":{"anyOf":[{"$ref":"#/components/schemas/UserSettableStatus"},{"type":"null"}]},"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"},"citizen_id":{"type":"integer","title":"Citizen Id"},"popup_city_id":{"type":"integer","title":"Popup City Id"},"group_id":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Group Id"}},"type":"object","required":["first_name","last_name","citizen_id","popup_city_id"],"title":"ApplicationCreate"},"ApplicationData":{"properties":{"id":{"type":"integer","title":"Id"},"residence":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Residence"},"personal_goals":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Personal Goals"}},"type":"object","required":["id"],"title":"ApplicationData"},"ApplicationStatus":{"type":"string","enum":["draft","in review","rejected","accepted","withdrawn"],"title":"ApplicationStatus"},"ApplicationUpdate":{"properties":{"first_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"First Name"},"last_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Last Name"},"telegram":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Telegram"},"organization":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Organization"},"role":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Role"},"gender":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Gender"},"age":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Age"},"social_media":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Social Media"},"residence":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Residence"},"local_resident":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Local Resident"},"eth_address":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Eth Address"},"duration":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Duration"},"video_url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Video Url"},"payment_capacity":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Payment Capacity"},"github_profile":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Github Profile"},"minting_link":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Minting Link"},"area_of_expertise":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Area Of Expertise"},"preferred_dates":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Preferred Dates"},"hackathon_interest":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Hackathon Interest"},"host_session":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Host Session"},"personal_goals":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Personal Goals"},"referral":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Referral"},"info_not_shared":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Info Not Shared"},"investor":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Investor"},"is_renter":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Is Renter"},"booking_confirmation":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Booking Confirmation"},"brings_spouse":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Brings Spouse"},"spouse_info":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Spouse Info"},"spouse_email":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Spouse Email"},"brings_kids":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Brings Kids"},"kids_info":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Kids Info"},"interested_in_child_led_projects":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Interested In Child Led Projects"},"builder_boolean":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Builder Boolean"},"builder_description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Builder Description"},"scholarship_request":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Scholarship Request"},"scholarship_details":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Scholarship Details"},"scholarship_video_url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Scholarship Video Url"},"residencies_interested_in":{"anyOf":[{"items":{"$ref":"#/components/schemas/Residency"},"type":"array"},{"type":"null"}],"title":"Residencies Interested In"},"residencies_text":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Residencies Text"},"requested_discount":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Requested Discount"},"status":{"anyOf":[{"$ref":"#/components/schemas/UserSettableStatus"},{"type":"null"}]},"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"}},"type":"object","title":"ApplicationUpdate"},"ApplicationWithAuth":{"properties":{"first_name":{"type":"string","title":"First Name"},"last_name":{"type":"string","title":"Last Name"},"telegram":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Telegram"},"organization":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Organization"},"role":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Role"},"gender":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Gender"},"age":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Age"},"social_media":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Social Media"},"residence":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Residence"},"local_resident":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Local Resident"},"eth_address":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Eth Address"},"duration":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Duration"},"video_url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Video Url"},"payment_capacity":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Payment Capacity"},"github_profile":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Github Profile"},"minting_link":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Minting Link"},"area_of_expertise":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Area Of Expertise"},"preferred_dates":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Preferred Dates"},"hackathon_interest":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Hackathon Interest"},"host_session":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Host Session"},"personal_goals":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Personal Goals"},"referral":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Referral"},"info_not_shared":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Info Not Shared"},"investor":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Investor"},"is_renter":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Is Renter"},"booking_confirmation":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Booking Confirmation"},"brings_spouse":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Brings Spouse"},"spouse_info":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Spouse Info"},"spouse_email":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Spouse Email"},"brings_kids":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Brings Kids"},"kids_info":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Kids Info"},"interested_in_child_led_projects":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Interested In Child Led Projects"},"builder_boolean":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Builder Boolean"},"builder_description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Builder Description"},"scholarship_request":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Scholarship Request"},"scholarship_details":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Scholarship Details"},"scholarship_video_url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Scholarship Video Url"},"residencies_interested_in":{"anyOf":[{"items":{"$ref":"#/components/schemas/Residency"},"type":"array"},{"type":"null"}],"title":"Residencies Interested In"},"residencies_text":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Residencies Text"},"requested_discount":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Requested Discount"},"status":{"anyOf":[{"$ref":"#/components/schemas/ApplicationStatus"},{"type":"null"}]},"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"},"citizen_id":{"type":"integer","title":"Citizen Id"},"popup_city_id":{"type":"integer","title":"Popup City Id"},"group_id":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Group Id"},"email":{"type":"string","title":"Email"},"submitted_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Submitted At"},"created_by_leader":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Created By Leader"},"auto_approved":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Auto Approved"},"id":{"type":"integer","title":"Id"},"attendees":{"anyOf":[{"items":{"$ref":"#/components/schemas/Attendee"},"type":"array"},{"type":"null"}],"title":"Attendees"},"discount_assigned":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Discount Assigned"},"products":{"anyOf":[{"items":{"$ref":"#/components/schemas/Product"},"type":"array"},{"type":"null"}],"title":"Products"},"credit":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Credit"},"red_flag":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Red Flag"},"authorization":{"$ref":"#/components/schemas/Token"}},"type":"object","required":["first_name","last_name","citizen_id","popup_city_id","email","id","authorization"],"title":"ApplicationWithAuth"},"ApplicationWithPopupCity":{"properties":{"first_name":{"type":"string","title":"First Name"},"last_name":{"type":"string","title":"Last Name"},"telegram":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Telegram"},"organization":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Organization"},"role":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Role"},"gender":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Gender"},"age":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Age"},"social_media":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Social Media"},"residence":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Residence"},"local_resident":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Local Resident"},"eth_address":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Eth Address"},"duration":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Duration"},"video_url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Video Url"},"payment_capacity":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Payment Capacity"},"github_profile":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Github Profile"},"minting_link":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Minting Link"},"area_of_expertise":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Area Of Expertise"},"preferred_dates":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Preferred Dates"},"hackathon_interest":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Hackathon Interest"},"host_session":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Host Session"},"personal_goals":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Personal Goals"},"referral":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Referral"},"info_not_shared":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Info Not Shared"},"investor":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Investor"},"is_renter":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Is Renter"},"booking_confirmation":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Booking Confirmation"},"brings_spouse":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Brings Spouse"},"spouse_info":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Spouse Info"},"spouse_email":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Spouse Email"},"brings_kids":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Brings Kids"},"kids_info":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Kids Info"},"interested_in_child_led_projects":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Interested In Child Led Projects"},"builder_boolean":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Builder Boolean"},"builder_description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Builder Description"},"scholarship_request":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Scholarship Request"},"scholarship_details":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Scholarship Details"},"scholarship_video_url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Scholarship Video Url"},"residencies_interested_in":{"anyOf":[{"items":{"$ref":"#/components/schemas/Residency"},"type":"array"},{"type":"null"}],"title":"Residencies Interested In"},"residencies_text":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Residencies Text"},"requested_discount":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Requested Discount"},"status":{"anyOf":[{"$ref":"#/components/schemas/ApplicationStatus"},{"type":"null"}]},"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"},"citizen_id":{"type":"integer","title":"Citizen Id"},"popup_city_id":{"type":"integer","title":"Popup City Id"},"group_id":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Group Id"},"email":{"type":"string","title":"Email"},"submitted_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Submitted At"},"created_by_leader":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Created By Leader"},"auto_approved":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Auto Approved"},"id":{"type":"integer","title":"Id"},"attendees":{"anyOf":[{"items":{"$ref":"#/components/schemas/Attendee"},"type":"array"},{"type":"null"}],"title":"Attendees"},"discount_assigned":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Discount Assigned"},"products":{"anyOf":[{"items":{"$ref":"#/components/schemas/Product"},"type":"array"},{"type":"null"}],"title":"Products"},"credit":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Credit"},"red_flag":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Red Flag"},"popup_city_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Popup City Name"}},"type":"object","required":["first_name","last_name","citizen_id","popup_city_id","email","id"],"title":"ApplicationWithPopupCity"},"Attendee":{"properties":{"application_id":{"type":"integer","title":"Application Id"},"name":{"type":"string","title":"Name"},"category":{"type":"string","title":"Category"},"check_in_code":{"type":"string","title":"Check In Code"},"email":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Email"},"gender":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Gender"},"group_id":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Group Id"},"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"},"id":{"type":"integer","title":"Id"},"products":{"items":{"$ref":"#/components/schemas/ProductWithQuantity"},"type":"array","title":"Products"}},"type":"object","required":["application_id","name","category","check_in_code","id","products"],"title":"Attendee"},"AttendeeCreate":{"properties":{"name":{"type":"string","title":"Name"},"category":{"type":"string","title":"Category"},"email":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Email"},"gender":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Gender"},"group_id":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Group Id"}},"type":"object","required":["name","category"],"title":"AttendeeCreate"},"AttendeeInfo":{"properties":{"name":{"type":"string","title":"Name"},"category":{"type":"string","title":"Category"},"gender":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Gender"},"email":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Email"}},"type":"object","required":["name","category"],"title":"AttendeeInfo"},"AttendeeUpdate":{"properties":{"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"email":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Email"},"gender":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Gender"},"category":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Category"}},"type":"object","title":"AttendeeUpdate"},"AttendeeWithTickets":{"properties":{"name":{"type":"string","title":"Name"},"email":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Email"},"category":{"type":"string","title":"Category"},"popup_city":{"type":"string","title":"Popup City"},"products":{"items":{"$ref":"#/components/schemas/MinProductsData"},"type":"array","title":"Products"}},"type":"object","required":["name","category","popup_city","products"],"title":"AttendeeWithTickets"},"AttendeesDirectory":{"properties":{"id":{"type":"integer","title":"Id"},"citizen_id":{"type":"integer","title":"Citizen Id"},"first_name":{"anyOf":[{"type":"string"},{"type":"string","const":"*"},{"type":"null"}],"title":"First Name"},"last_name":{"anyOf":[{"type":"string"},{"type":"string","const":"*"},{"type":"null"}],"title":"Last Name"},"email":{"anyOf":[{"type":"string"},{"type":"string","const":"*"},{"type":"null"}],"title":"Email"},"telegram":{"anyOf":[{"type":"string"},{"type":"string","const":"*"},{"type":"null"}],"title":"Telegram"},"brings_kids":{"anyOf":[{"type":"boolean"},{"type":"string","const":"*"},{"type":"null"}],"title":"Brings Kids"},"role":{"anyOf":[{"type":"string"},{"type":"string","const":"*"},{"type":"null"}],"title":"Role"},"organization":{"anyOf":[{"type":"string"},{"type":"string","const":"*"},{"type":"null"}],"title":"Organization"},"personal_goals":{"anyOf":[{"type":"string"},{"type":"string","const":"*"},{"type":"null"}],"title":"Personal Goals"},"residence":{"anyOf":[{"type":"string"},{"type":"string","const":"*"},{"type":"null"}],"title":"Residence"},"age":{"anyOf":[{"type":"string"},{"type":"string","const":"*"},{"type":"null"}],"title":"Age"},"gender":{"anyOf":[{"type":"string"},{"type":"string","const":"*"},{"type":"null"}],"title":"Gender"},"social_media":{"anyOf":[{"type":"string"},{"type":"string","const":"*"},{"type":"null"}],"title":"Social Media"},"builder_boolean":{"anyOf":[{"type":"boolean"},{"type":"string","const":"*"},{"type":"null"}],"title":"Builder Boolean"},"builder_description":{"anyOf":[{"type":"string"},{"type":"string","const":"*"},{"type":"null"}],"title":"Builder Description"},"residencies_interested_in":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"string","const":"*"},{"type":"null"}],"title":"Residencies Interested In"},"residencies_text":{"anyOf":[{"type":"string"},{"type":"string","const":"*"},{"type":"null"}],"title":"Residencies Text"},"participation":{"anyOf":[{"items":{"$ref":"#/components/schemas/Product"},"type":"array"},{"type":"string","const":"*"},{"type":"null"}],"title":"Participation"},"associated_attendees":{"anyOf":[{"items":{"$ref":"#/components/schemas/AttendeeInfo"},"type":"array"},{"type":"string","const":"*"},{"type":"null"}],"title":"Associated Attendees"},"picture_url":{"anyOf":[{"type":"string"},{"type":"string","const":"*"},{"type":"null"}],"title":"Picture Url"}},"type":"object","required":["id","citizen_id","first_name","last_name","email","telegram","brings_kids","role","organization","personal_goals","residence","age","gender","social_media","builder_boolean","builder_description","residencies_interested_in","residencies_text","participation","associated_attendees","picture_url"],"title":"AttendeesDirectory"},"Authenticate":{"properties":{"email":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Email"},"popup_slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Popup Slug"},"use_code":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Use Code","default":false},"signature":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Signature"},"world_address":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"World Address"},"verified_upon_login":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Verified Upon Login"},"world_redirect":{"type":"boolean","title":"World Redirect","default":false},"source":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Source"}},"type":"object","title":"Authenticate"},"AuthenticateThirdParty":{"properties":{"email":{"type":"string","title":"Email"}},"type":"object","required":["email"],"title":"AuthenticateThirdParty"},"CheckInResponse":{"properties":{"success":{"type":"boolean","title":"Success"},"first_check_in":{"type":"boolean","title":"First Check In"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"scan_time":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Scan Time"}},"type":"object","required":["success","first_check_in"],"title":"CheckInResponse"},"Citizen":{"properties":{"primary_email":{"type":"string","title":"Primary Email"},"secondary_email":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Secondary Email"},"email_validated":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Email Validated","default":false},"first_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"First Name"},"last_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Last Name"},"x_user":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X User"},"telegram":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Telegram"},"gender":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Gender"},"role":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Role"},"organization":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Organization"},"picture_url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Picture Url"},"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"},"id":{"type":"integer","title":"Id"},"edge_mapped_sent":{"type":"boolean","title":"Edge Mapped Sent","default":false}},"type":"object","required":["primary_email","id"],"title":"Citizen"},"CitizenCreate":{"properties":{"primary_email":{"type":"string","title":"Primary Email"},"secondary_email":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Secondary Email"},"email_validated":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Email Validated","default":false},"first_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"First Name"},"last_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Last Name"},"x_user":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X User"},"telegram":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Telegram"},"gender":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Gender"},"role":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Role"},"organization":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Organization"},"picture_url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Picture Url"},"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"}},"type":"object","required":["primary_email"],"title":"CitizenCreate"},"CitizenPoaps":{"properties":{"emails":{"items":{"type":"string"},"type":"array","title":"Emails"},"results":{"items":{"$ref":"#/components/schemas/CitizenPoapsByPopup"},"type":"array","title":"Results"}},"type":"object","required":["emails","results"],"title":"CitizenPoaps"},"CitizenPoapsByPopup":{"properties":{"popup_id":{"type":"integer","title":"Popup Id"},"popup_name":{"type":"string","title":"Popup Name"},"poaps":{"items":{"$ref":"#/components/schemas/PoapClaim"},"type":"array","title":"Poaps"}},"type":"object","required":["popup_id","popup_name","poaps"],"title":"CitizenPoapsByPopup"},"CitizenPopupData":{"properties":{"id":{"type":"integer","title":"Id"},"popup_name":{"type":"string","title":"Popup Name"},"start_date":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Start Date"},"end_date":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"End Date"},"total_days":{"type":"integer","title":"Total Days"},"location":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Location"},"image_url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Image Url"},"application":{"anyOf":[{"$ref":"#/components/schemas/ApplicationData"},{"type":"null"}]}},"type":"object","required":["id","popup_name","total_days"],"title":"CitizenPopupData"},"CitizenProfile":{"properties":{"primary_email":{"type":"string","title":"Primary Email"},"secondary_email":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Secondary Email"},"email_validated":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Email Validated","default":false},"first_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"First Name"},"last_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Last Name"},"x_user":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X User"},"telegram":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Telegram"},"gender":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Gender"},"role":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Role"},"organization":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Organization"},"picture_url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Picture Url"},"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"},"id":{"type":"integer","title":"Id"},"edge_mapped_sent":{"type":"boolean","title":"Edge Mapped Sent","default":false},"linked_emails":{"items":{"type":"string"},"type":"array","title":"Linked Emails"},"popups":{"items":{"$ref":"#/components/schemas/CitizenPopupData"},"type":"array","title":"Popups"},"total_days":{"type":"integer","title":"Total Days"},"referral_count":{"type":"integer","title":"Referral Count"}},"type":"object","required":["primary_email","id","linked_emails","popups","total_days","referral_count"],"title":"CitizenProfile"},"CitizenUpdate":{"properties":{"first_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"First Name"},"last_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Last Name"},"x_user":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X User"},"telegram":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Telegram"},"gender":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Gender"},"role":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Role"},"organization":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Organization"},"picture_url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Picture Url"}},"type":"object","title":"CitizenUpdate"},"ClusterInfo":{"properties":{"cluster_id":{"type":"integer","title":"Cluster Id"},"citizen_ids":{"items":{"type":"integer"},"type":"array","title":"Citizen Ids"},"member_count":{"type":"integer","title":"Member Count"},"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"}},"type":"object","required":["cluster_id","citizen_ids","member_count"],"title":"ClusterInfo","description":"Information about a cluster."},"ClusterJoinRequestCreate":{"properties":{"target_email":{"type":"string","format":"email","title":"Target Email"}},"type":"object","required":["target_email"],"title":"ClusterJoinRequestCreate","description":"Schema for creating a cluster join request."},"ClusterJoinRequestResponse":{"properties":{"message":{"type":"string","title":"Message"},"request_id":{"type":"integer","title":"Request Id"}},"type":"object","required":["message","request_id"],"title":"ClusterJoinRequestResponse","description":"Response after initiating a join request."},"CouponCode":{"properties":{"id":{"type":"integer","title":"Id"},"code":{"type":"string","title":"Code"},"popup_city_id":{"type":"integer","title":"Popup City Id"},"discount_value":{"type":"number","title":"Discount Value"}},"type":"object","required":["id","code","popup_city_id","discount_value"],"title":"CouponCode"},"CouponCodeCreate":{"properties":{"code":{"type":"string","title":"Code"},"popup_city_id":{"type":"integer","title":"Popup City Id"},"discount_value":{"type":"integer","title":"Discount Value"},"max_uses":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Max Uses"},"is_active":{"type":"boolean","title":"Is Active","default":true}},"type":"object","required":["code","popup_city_id","discount_value"],"title":"CouponCodeCreate"},"Group":{"properties":{"name":{"type":"string","title":"Name"},"slug":{"type":"string","title":"Slug"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"discount_percentage":{"type":"number","title":"Discount Percentage"},"popup_city_id":{"type":"integer","title":"Popup City Id"},"max_members":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Max Members"},"welcome_message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Welcome Message"},"is_ambassador_group":{"type":"boolean","title":"Is Ambassador Group","default":false},"ambassador_email":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Ambassador Email"},"ambassador_id":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Ambassador Id"},"id":{"type":"integer","title":"Id"},"popup_name":{"type":"string","title":"Popup Name"},"express_checkout_background":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Express Checkout Background"},"web_url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Web Url"},"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"}},"type":"object","required":["name","slug","discount_percentage","popup_city_id","id","popup_name"],"title":"Group"},"GroupMember":{"properties":{"first_name":{"type":"string","title":"First Name"},"last_name":{"type":"string","title":"Last Name"},"email":{"type":"string","title":"Email"},"telegram":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Telegram"},"organization":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Organization"},"role":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Role"},"gender":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Gender"},"local_resident":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Local Resident"}},"type":"object","required":["first_name","last_name","email"],"title":"GroupMember"},"GroupMemberBatch":{"properties":{"members":{"items":{"$ref":"#/components/schemas/GroupMember"},"type":"array","title":"Members"},"update_existing":{"type":"boolean","title":"Update Existing","default":false}},"type":"object","required":["members"],"title":"GroupMemberBatch"},"GroupMemberUpdate":{"properties":{"first_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"First Name"},"last_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Last Name"},"email":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Email"},"telegram":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Telegram"},"organization":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Organization"},"role":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Role"},"gender":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Gender"},"local_resident":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Local Resident"}},"type":"object","title":"GroupMemberUpdate"},"GroupUpdate":{"properties":{"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"welcome_message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Welcome Message"}},"type":"object","title":"GroupUpdate"},"GroupWithMembers":{"properties":{"name":{"type":"string","title":"Name"},"slug":{"type":"string","title":"Slug"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"discount_percentage":{"type":"number","title":"Discount Percentage"},"popup_city_id":{"type":"integer","title":"Popup City Id"},"max_members":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Max Members"},"welcome_message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Welcome Message"},"is_ambassador_group":{"type":"boolean","title":"Is Ambassador Group","default":false},"ambassador_email":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Ambassador Email"},"ambassador_id":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Ambassador Id"},"id":{"type":"integer","title":"Id"},"popup_name":{"type":"string","title":"Popup Name"},"express_checkout_background":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Express Checkout Background"},"web_url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Web Url"},"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"},"members":{"items":{"$ref":"#/components/schemas/MemberWithProducts"},"type":"array","title":"Members"}},"type":"object","required":["name","slug","discount_percentage","popup_city_id","id","popup_name","members"],"title":"GroupWithMembers"},"HTTPValidationError":{"properties":{"detail":{"items":{"$ref":"#/components/schemas/ValidationError"},"type":"array","title":"Detail"}},"type":"object","title":"HTTPValidationError"},"LeaveClusterResponse":{"properties":{"message":{"type":"string","title":"Message"}},"type":"object","required":["message"],"title":"LeaveClusterResponse","description":"Response after leaving a cluster."},"MemberBatchResult":{"properties":{"first_name":{"type":"string","title":"First Name"},"last_name":{"type":"string","title":"Last Name"},"email":{"type":"string","title":"Email"},"telegram":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Telegram"},"organization":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Organization"},"role":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Role"},"gender":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Gender"},"local_resident":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Local Resident"},"id":{"type":"integer","title":"Id"},"products":{"items":{"$ref":"#/components/schemas/Product"},"type":"array","title":"Products"},"success":{"type":"boolean","title":"Success"},"err_msg":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Err Msg"}},"type":"object","required":["first_name","last_name","email","id","products","success"],"title":"MemberBatchResult"},"MemberWithProducts":{"properties":{"first_name":{"type":"string","title":"First Name"},"last_name":{"type":"string","title":"Last Name"},"email":{"type":"string","title":"Email"},"telegram":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Telegram"},"organization":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Organization"},"role":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Role"},"gender":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Gender"},"local_resident":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Local Resident"},"id":{"type":"integer","title":"Id"},"products":{"items":{"$ref":"#/components/schemas/Product"},"type":"array","title":"Products"}},"type":"object","required":["first_name","last_name","email","id","products"],"title":"MemberWithProducts"},"MinProductsData":{"properties":{"name":{"type":"string","title":"Name"},"category":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Category"},"start_date":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Start Date"},"end_date":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"End Date"}},"type":"object","required":["name"],"title":"MinProductsData"},"NewQRCheckIn":{"properties":{"code":{"type":"string","title":"Code"}},"type":"object","required":["code"],"title":"NewQRCheckIn"},"NewVirtualCheckIn":{"properties":{"code":{"type":"string","title":"Code"},"application_id":{"type":"integer","title":"Application Id"},"arrival_date":{"type":"string","format":"date-time","title":"Arrival Date"},"departure_date":{"type":"string","format":"date-time","title":"Departure Date"}},"type":"object","required":["code","application_id","arrival_date","departure_date"],"title":"NewVirtualCheckIn"},"Organization":{"properties":{"name":{"type":"string","title":"Name"},"id":{"type":"integer","title":"Id"},"created_at":{"type":"string","format":"date-time","title":"Created At"},"updated_at":{"type":"string","format":"date-time","title":"Updated At"}},"type":"object","required":["name","id","created_at","updated_at"],"title":"Organization"},"PaginatedResponse_AttendeesDirectory_":{"properties":{"items":{"items":{"$ref":"#/components/schemas/AttendeesDirectory"},"type":"array","title":"Items"},"pagination":{"$ref":"#/components/schemas/PaginationMetadata"}},"type":"object","required":["items","pagination"],"title":"PaginatedResponse[AttendeesDirectory]"},"PaginationMetadata":{"properties":{"skip":{"type":"integer","title":"Skip"},"limit":{"type":"integer","title":"Limit"},"total":{"type":"integer","title":"Total"}},"type":"object","required":["skip","limit","total"],"title":"PaginationMetadata","description":"Metadata for pagination results.\n\nAttributes:\n    skip: The number of items to skip\n    limit: The number of items per page\n    total: The total number of items across all pages"},"Payment":{"properties":{"application_id":{"type":"integer","title":"Application Id"},"external_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"External Id"},"status":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Status"},"amount":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Amount"},"source":{"anyOf":[{"$ref":"#/components/schemas/PaymentSource"},{"type":"null"}]},"currency":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Currency"},"rate":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Rate"},"checkout_url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Checkout Url"},"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"},"id":{"type":"integer","title":"Id"},"products_snapshot":{"items":{"$ref":"#/components/schemas/PaymentProductResponse"},"type":"array","title":"Products Snapshot"},"is_installment_plan":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Is Installment Plan"},"installments_total":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Installments Total"},"installments_paid":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Installments Paid"}},"type":"object","required":["application_id","id","products_snapshot"],"title":"Payment"},"PaymentCreate":{"properties":{"application_id":{"type":"integer","title":"Application Id"},"products":{"items":{"$ref":"#/components/schemas/PaymentProduct"},"type":"array","title":"Products"},"coupon_code":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Coupon Code"},"edit_passes":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Edit Passes","default":false},"insurance":{"type":"boolean","title":"Insurance","default":false}},"type":"object","required":["application_id","products"],"title":"PaymentCreate"},"PaymentPreview":{"properties":{"application_id":{"type":"integer","title":"Application Id"},"external_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"External Id"},"status":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Status"},"amount":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Amount"},"source":{"anyOf":[{"$ref":"#/components/schemas/PaymentSource"},{"type":"null"}]},"currency":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Currency"},"rate":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Rate"},"checkout_url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Checkout Url"},"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"},"products":{"items":{"$ref":"#/components/schemas/PaymentProduct"},"type":"array","title":"Products"},"coupon_code":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Coupon Code"},"edit_passes":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Edit Passes","default":false},"insurance":{"type":"boolean","title":"Insurance","default":false},"original_amount":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Original Amount"},"coupon_code_id":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Coupon Code Id"},"discount_value":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Discount Value"},"group_id":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Group Id"},"is_installment_plan":{"type":"boolean","title":"Is Installment Plan","default":false},"installments_total":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Installments Total"},"insurance_amount":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Insurance Amount"},"variable_amount":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Variable Amount"}},"type":"object","required":["application_id","products"],"title":"PaymentPreview"},"PaymentProduct":{"properties":{"product_id":{"type":"integer","title":"Product Id"},"attendee_id":{"type":"integer","title":"Attendee Id"},"quantity":{"type":"integer","minimum":1.0,"title":"Quantity"},"custom_amount":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Custom Amount"}},"type":"object","required":["product_id","attendee_id","quantity"],"title":"PaymentProduct"},"PaymentProductResponse":{"properties":{"product_id":{"type":"integer","title":"Product Id"},"attendee_id":{"type":"integer","title":"Attendee Id"},"quantity":{"type":"integer","title":"Quantity"},"product_name":{"type":"string","title":"Product Name"},"product_description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Product Description"},"product_price":{"type":"number","title":"Product Price"},"product_category":{"type":"string","title":"Product Category"},"insurance_applied":{"type":"boolean","title":"Insurance Applied","default":false},"insurance_price":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Insurance Price"},"created_at":{"type":"string","format":"date-time","title":"Created At"}},"type":"object","required":["product_id","attendee_id","quantity","product_name","product_description","product_price","product_category","created_at"],"title":"PaymentProductResponse"},"PaymentSource":{"type":"string","enum":["SimpleFI","Stripe","x402"],"title":"PaymentSource"},"PoapClaim":{"properties":{"attendee_id":{"type":"integer","title":"Attendee Id"},"attendee_name":{"type":"string","title":"Attendee Name"},"attendee_email":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Attendee Email"},"attendee_category":{"type":"string","title":"Attendee Category"},"poap_url":{"type":"string","title":"Poap Url"},"poap_name":{"type":"string","title":"Poap Name"},"poap_description":{"type":"string","title":"Poap Description"},"poap_image_url":{"type":"string","title":"Poap Image Url"},"poap_claimed":{"type":"boolean","title":"Poap Claimed"},"poap_is_active":{"type":"boolean","title":"Poap Is Active"}},"type":"object","required":["attendee_id","attendee_name","attendee_category","poap_url","poap_name","poap_description","poap_image_url","poap_claimed","poap_is_active"],"title":"PoapClaim"},"PopUpCity":{"properties":{"name":{"type":"string","title":"Name"},"slug":{"type":"string","title":"Slug"},"tagline":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Tagline"},"location":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Location"},"passes_description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Passes Description"},"image_url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Image Url"},"express_checkout_background":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Express Checkout Background"},"ticketing_banner_description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Ticketing Banner Description"},"start_date":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Start Date"},"end_date":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"End Date"},"installments_deadline":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Installments Deadline"},"clickable_in_portal":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Clickable In Portal","default":false},"visible_in_portal":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Visible In Portal","default":false},"requires_approval":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Requires Approval","default":true},"allows_spouse":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Allows Spouse","default":false},"allows_children":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Allows Children","default":false},"allows_coupons":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Allows Coupons","default":false},"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"},"id":{"type":"integer","title":"Id"}},"type":"object","required":["name","slug","id"],"title":"PopUpCity"},"Product":{"properties":{"name":{"type":"string","title":"Name"},"slug":{"type":"string","title":"Slug"},"price":{"type":"number","title":"Price"},"compare_price":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Compare Price"},"popup_city_id":{"type":"integer","title":"Popup City Id"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"category":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Category"},"attendee_category":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Attendee Category"},"start_date":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Start Date"},"end_date":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"End Date"},"is_active":{"type":"boolean","title":"Is Active","default":true},"exclusive":{"type":"boolean","title":"Exclusive","default":false},"insurance_percentage":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Insurance Percentage"},"min_price":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Min Price"},"max_price":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Max Price"},"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"},"id":{"type":"integer","title":"Id"}},"type":"object","required":["name","slug","price","popup_city_id","id"],"title":"Product"},"ProductWithQuantity":{"properties":{"name":{"type":"string","title":"Name"},"slug":{"type":"string","title":"Slug"},"price":{"type":"number","title":"Price"},"compare_price":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Compare Price"},"popup_city_id":{"type":"integer","title":"Popup City Id"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"category":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Category"},"attendee_category":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Attendee Category"},"start_date":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Start Date"},"end_date":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"End Date"},"is_active":{"type":"boolean","title":"Is Active","default":true},"exclusive":{"type":"boolean","title":"Exclusive","default":false},"insurance_percentage":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Insurance Percentage"},"min_price":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Min Price"},"max_price":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Max Price"},"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"},"id":{"type":"integer","title":"Id"},"quantity":{"type":"integer","title":"Quantity"}},"type":"object","required":["name","slug","price","popup_city_id","id","quantity"],"title":"ProductWithQuantity"},"Residency":{"type":"string","enum":["Crypto Builder","Crypto Researcher","General Engineering","Researcher","Network State Residency","Biotech / Longevity / Biohacking","Founder / Startup Residency"],"title":"Residency"},"TicketApiKeyCreate":{"properties":{"email":{"type":"string","title":"Email"},"key":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Key"}},"type":"object","required":["email"],"title":"TicketApiKeyCreate","description":"Payload for generating a new API key linked to an email."},"TicketApiKeyResponse":{"properties":{"email":{"type":"string","title":"Email"},"api_key":{"type":"string","title":"Api Key"}},"type":"object","required":["email","api_key"],"title":"TicketApiKeyResponse","description":"Response with the newly generated API key."},"Token":{"properties":{"access_token":{"type":"string","title":"Access Token"},"token_type":{"type":"string","title":"Token Type"}},"type":"object","required":["access_token","token_type"],"title":"Token"},"UserSettableStatus":{"type":"string","enum":["draft","in review"],"title":"UserSettableStatus"},"ValidationError":{"properties":{"loc":{"items":{"anyOf":[{"type":"string"},{"type":"integer"}]},"type":"array","title":"Location"},"msg":{"type":"string","title":"Message"},"type":{"type":"string","title":"Error Type"}},"type":"object","required":["loc","msg","type"],"title":"ValidationError"},"VerifyJoinRequest":{"properties":{"verification_code":{"type":"string","title":"Verification Code"}},"type":"object","required":["verification_code"],"title":"VerifyJoinRequest","description":"Schema for verifying a join request."},"VerifyJoinResponse":{"properties":{"message":{"type":"string","title":"Message"},"cluster_id":{"type":"integer","title":"Cluster Id"}},"type":"object","required":["message","cluster_id"],"title":"VerifyJoinResponse","description":"Response after verifying a join request."},"WebhookData":{"properties":{"table_id":{"type":"string","title":"Table Id"},"table_name":{"type":"string","title":"Table Name"},"rows":{"items":{"$ref":"#/components/schemas/WebhookRow"},"type":"array","title":"Rows"}},"type":"object","required":["table_id","table_name","rows"],"title":"WebhookData"},"WebhookPayload":{"properties":{"type":{"type":"string","title":"Type"},"id":{"type":"string","title":"Id"},"data":{"$ref":"#/components/schemas/WebhookData"}},"type":"object","required":["type","id","data"],"title":"WebhookPayload"},"WebhookRow":{"properties":{"id":{"anyOf":[{"type":"integer"},{"type":"string"}],"title":"Id"}},"additionalProperties":true,"type":"object","required":["id"],"title":"WebhookRow"},"WorldBuilder":{"properties":{"email":{"type":"string","title":"Email"},"world_address":{"type":"string","title":"World Address"},"first_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"First Name"},"last_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Last Name"},"builder_score":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Builder Score"},"phone":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Phone"},"location":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Location"},"personal_links":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Personal Links"},"x_handle":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X Handle"},"project_description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Project Description"},"project_stage":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Project Stage"},"funding_status":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Funding Status"},"team_description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Team Description"},"tech_stack":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Tech Stack"},"edge_nexus_benefit":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Edge Nexus Benefit"},"edge_nexus_cohort":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Edge Nexus Cohort"},"financial_situation":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Financial Situation"},"financial_support_reason":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Financial Support Reason"},"extra_info":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Extra Info"},"integration_potential":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Integration Potential"},"send_proposal":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Send Proposal"},"accepted":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Accepted"},"notes":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Notes"},"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"},"id":{"type":"integer","title":"Id"}},"type":"object","required":["email","world_address","id"],"title":"WorldBuilder"},"WorldBuilderCreate":{"properties":{"email":{"type":"string","title":"Email"},"world_address":{"type":"string","title":"World Address"},"first_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"First Name"},"last_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Last Name"},"builder_score":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Builder Score"},"phone":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Phone"},"location":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Location"},"personal_links":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Personal Links"},"x_handle":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X Handle"},"project_description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Project Description"},"project_stage":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Project Stage"},"funding_status":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Funding Status"},"team_description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Team Description"},"tech_stack":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Tech Stack"},"edge_nexus_benefit":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Edge Nexus Benefit"},"edge_nexus_cohort":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Edge Nexus Cohort"},"financial_situation":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Financial Situation"},"financial_support_reason":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Financial Support Reason"},"extra_info":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Extra Info"},"integration_potential":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Integration Potential"},"send_proposal":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Send Proposal"},"accepted":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Accepted"},"notes":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Notes"},"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"}},"type":"object","required":["email","world_address"],"title":"WorldBuilderCreate"},"WorldBuilderScore":{"properties":{"score":{"type":"integer","title":"Score"}},"type":"object","required":["score"],"title":"WorldBuilderScore"}},"securitySchemes":{"OAuth2PasswordBearer":{"type":"oauth2","flows":{"password":{"scopes":{},"tokenUrl":"auth/token"}}}}}}