{"openapi":"3.1.0","info":{"title":"RELD API","description":"REST API for U.S. real estate license search, verification, batch checks, coverage metadata, and affiliation endpoints. Protected `/api/v1/*` routes require `Authorization: Bearer <api_key>`.","version":"1.0.0"},"paths":{"/health":{"get":{"summary":"Health","operationId":"health_health_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"additionalProperties":true,"type":"object","title":"Response Health Health Get"}}}}}}},"/api/v1/states":{"get":{"tags":["states"],"summary":"List States","operationId":"list_states_api_v1_states_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"items":{"additionalProperties":true,"type":"object"},"type":"array","title":"Response List States Api V1 States Get"}}}}},"security":[{"ApiKeyBearer":[]}]}},"/api/v1/sources":{"get":{"tags":["sources"],"summary":"List Sources","operationId":"list_sources_api_v1_sources_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"items":{"additionalProperties":true,"type":"object"},"type":"array","title":"Response List Sources Api V1 Sources Get"}}}}},"security":[{"ApiKeyBearer":[]}]}},"/api/v1/sources/coverage":{"get":{"tags":["sources"],"summary":"Coverage","operationId":"coverage_api_v1_sources_coverage_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"additionalProperties":true,"type":"object","title":"Response Coverage Api V1 Sources Coverage Get"}}}}},"security":[{"ApiKeyBearer":[]}]}},"/api/v1/coverage":{"get":{"tags":["coverage"],"summary":"Coverage","operationId":"coverage_api_v1_coverage_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/CoverageResponse"}}}}}}},"/api/v1/licensees":{"get":{"tags":["licensees"],"summary":"Search licensees (canonical)","description":"Primary search endpoint for new integrations. Requires `state`. Supports `name`, `first_name`, `last_name`, `business_name`, `status`, `license_type`, `brokerage`, `city`, and pagination.","operationId":"licensees_search_api_v1_licensees_get","security":[{"ApiKeyBearer":[]}],"parameters":[{"name":"state","in":"query","required":true,"schema":{"type":"string","title":"State"}},{"name":"name","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"}},{"name":"first_name","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"First Name"}},{"name":"last_name","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Last Name"}},{"name":"business_name","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Business Name"}},{"name":"status","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Status"}},{"name":"license_type","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"License Type"}},{"name":"brokerage","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Brokerage"}},{"name":"city","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"City"}},{"name":"page","in":"query","required":false,"schema":{"type":"integer","minimum":1,"default":1,"title":"Page"}},{"name":"per_page","in":"query","required":false,"schema":{"type":"integer","maximum":100,"minimum":1,"default":25,"title":"Per Page"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PublicLicenseeSearchResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/licensees/verify":{"get":{"tags":["licensees"],"summary":"Licensees Verify","operationId":"licensees_verify_api_v1_licensees_verify_get","security":[{"ApiKeyBearer":[]}],"parameters":[{"name":"state","in":"query","required":true,"schema":{"type":"string","title":"State"}},{"name":"license_number","in":"query","required":true,"schema":{"type":"string","title":"License Number"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PublicLicenseeVerifyResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/licensees/batch":{"post":{"tags":["licensees"],"summary":"Licensees Batch Verify","operationId":"licensees_batch_verify_api_v1_licensees_batch_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/BatchVerifyRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PublicBatchVerifyResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"security":[{"ApiKeyBearer":[]}]}},"/api/v1/licensees/{state}/{license_number}":{"get":{"tags":["licensees"],"summary":"Licensees Get","operationId":"licensees_get_api_v1_licensees__state___license_number__get","security":[{"ApiKeyBearer":[]}],"parameters":[{"name":"state","in":"path","required":true,"schema":{"type":"string","title":"State"}},{"name":"license_number","in":"path","required":true,"schema":{"type":"string","title":"License Number"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PublicLicenseeResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/licensees/{state}/{license_number}/affiliations":{"get":{"tags":["licensees"],"summary":"Licensees Affiliations","operationId":"licensees_affiliations_api_v1_licensees__state___license_number__affiliations_get","security":[{"ApiKeyBearer":[]}],"parameters":[{"name":"state","in":"path","required":true,"schema":{"type":"string","title":"State"}},{"name":"license_number","in":"path","required":true,"schema":{"type":"string","title":"License Number"}},{"name":"as_of","in":"query","required":false,"schema":{"anyOf":[{"type":"string","format":"date"},{"type":"null"}],"title":"As Of"}},{"name":"include_inactive","in":"query","required":false,"schema":{"type":"boolean","default":false,"title":"Include Inactive"}},{"name":"affiliate_role","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Affiliate Role"}},{"name":"relationship_type","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Relationship Type"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AffiliationHistoryResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/licensees/{state}/{license_number}/supervisors":{"get":{"tags":["licensees"],"summary":"Current supervisors (recommended)","description":"Returns all currently open supervisor relationships. Empty `data` (not 404) when none are on file.","operationId":"licensees_supervisors_api_v1_licensees__state___license_number__supervisors_get","security":[{"ApiKeyBearer":[]}],"parameters":[{"name":"state","in":"path","required":true,"schema":{"type":"string","title":"State"}},{"name":"license_number","in":"path","required":true,"schema":{"type":"string","title":"License Number"}},{"name":"affiliate_role","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Affiliate Role"}},{"name":"relationship_type","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Relationship Type"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SupervisorsResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/licensees/{state}/{license_number}/affiliates":{"get":{"tags":["licensees"],"summary":"Licensees Affiliates","operationId":"licensees_affiliates_api_v1_licensees__state___license_number__affiliates_get","security":[{"ApiKeyBearer":[]}],"parameters":[{"name":"state","in":"path","required":true,"schema":{"type":"string","title":"State"}},{"name":"license_number","in":"path","required":true,"schema":{"type":"string","title":"License Number"}},{"name":"affiliate_role","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Affiliate Role"}},{"name":"relationship_type","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Relationship Type"}},{"name":"page","in":"query","required":false,"schema":{"type":"integer","minimum":1,"default":1,"title":"Page"}},{"name":"per_page","in":"query","required":false,"schema":{"type":"integer","maximum":100,"minimum":1,"default":25,"title":"Per Page"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AffiliatesResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/license-credentials/{credential_id}/hierarchy":{"get":{"tags":["license-credentials"],"summary":"License Credential Hierarchy","operationId":"license_credential_hierarchy_api_v1_license_credentials__credential_id__hierarchy_get","security":[{"ApiKeyBearer":[]}],"parameters":[{"name":"credential_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Credential Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"object","additionalProperties":true,"title":"Response License Credential Hierarchy Api V1 License Credentials  Credential Id  Hierarchy Get"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/readiness":{"get":{"tags":["readiness"],"summary":"Readiness","operationId":"readiness_api_v1_readiness_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"additionalProperties":true,"type":"object","title":"Response Readiness Api V1 Readiness Get"}}}}},"security":[{"ApiKeyBearer":[]}]}},"/api/v1/account":{"get":{"tags":["account"],"summary":"Get Account","operationId":"get_account_api_v1_account_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"additionalProperties":true,"type":"object","title":"Response Get Account Api V1 Account Get"}}}}},"security":[{"ApiKeyBearer":[]}]}},"/api/v1/account/usage":{"get":{"tags":["account"],"summary":"Get Account Usage","operationId":"get_account_usage_api_v1_account_usage_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"additionalProperties":true,"type":"object","title":"Response Get Account Usage Api V1 Account Usage Get"}}}}},"security":[{"ApiKeyBearer":[]}]}},"/api/v1/api-keys":{"get":{"tags":["api-keys"],"summary":"List Keys","operationId":"list_keys_api_v1_api_keys_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"items":{"additionalProperties":true,"type":"object"},"type":"array","title":"Response List Keys Api V1 Api Keys Get"}}}}},"security":[{"ApiKeyBearer":[]}]},"post":{"tags":["api-keys"],"summary":"Create Key","operationId":"create_key_api_v1_api_keys_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/APIKeyCreateRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"additionalProperties":true,"type":"object","title":"Response Create Key Api V1 Api Keys Post"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"security":[{"ApiKeyBearer":[]}]}},"/api/v1/api-keys/{key_id}":{"delete":{"tags":["api-keys"],"summary":"Delete Key","operationId":"delete_key_api_v1_api_keys__key_id__delete","security":[{"ApiKeyBearer":[]}],"parameters":[{"name":"key_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Key Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"object","additionalProperties":true,"title":"Response Delete Key Api V1 Api Keys  Key Id  Delete"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}}},"components":{"schemas":{"APIKeyCreateRequest":{"properties":{"label":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Label"}},"type":"object","title":"APIKeyCreateRequest"},"AffiliateItem":{"properties":{"affiliate_license_credential_id":{"type":"string","title":"Affiliate License Credential Id"},"license_number":{"type":"string","title":"License Number"},"full_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Full Name"},"license_class":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"License Class"},"affiliate_role":{"type":"string","title":"Affiliate Role"},"relationship_type":{"type":"string","title":"Relationship Type"},"effective_from":{"type":"string","title":"Effective From"}},"type":"object","required":["affiliate_license_credential_id","license_number","affiliate_role","relationship_type","effective_from"],"title":"AffiliateItem"},"AffiliatesResponse":{"properties":{"data":{"items":{"$ref":"#/components/schemas/AffiliateItem"},"type":"array","title":"Data"},"meta":{"$ref":"#/components/schemas/PaginationMeta"}},"type":"object","required":["data","meta"],"title":"AffiliatesResponse"},"AffiliationHistoryItem":{"properties":{"supervisor_license_credential_id":{"type":"string","title":"Supervisor License Credential Id"},"supervisor_license_number":{"type":"string","title":"Supervisor License Number"},"supervisor_full_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Supervisor Full Name"},"affiliate_role":{"type":"string","title":"Affiliate Role"},"relationship_type":{"type":"string","title":"Relationship Type"},"effective_from":{"type":"string","title":"Effective From"},"effective_to":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Effective To"},"status":{"type":"string","title":"Status"}},"type":"object","required":["supervisor_license_credential_id","supervisor_license_number","affiliate_role","relationship_type","effective_from","status"],"title":"AffiliationHistoryItem"},"AffiliationHistoryResponse":{"properties":{"data":{"items":{"$ref":"#/components/schemas/AffiliationHistoryItem"},"type":"array","title":"Data"}},"type":"object","required":["data"],"title":"AffiliationHistoryResponse"},"BatchVerifyItem":{"properties":{"state":{"type":"string","maxLength":2,"minLength":2,"title":"State"},"license_number":{"type":"string","maxLength":128,"minLength":1,"title":"License Number"}},"type":"object","required":["state","license_number"],"title":"BatchVerifyItem"},"BatchVerifyRequest":{"properties":{"licenses":{"items":{"$ref":"#/components/schemas/BatchVerifyItem"},"type":"array","maxItems":100,"minItems":1,"title":"Licenses"}},"type":"object","required":["licenses"],"title":"BatchVerifyRequest"},"CoverageResponse":{"properties":{"states":{"items":{"$ref":"#/components/schemas/CoverageStateRow"},"type":"array","title":"States"}},"type":"object","required":["states"],"title":"CoverageResponse"},"CoverageStateRow":{"properties":{"state":{"type":"string","title":"State"},"status":{"type":"string","title":"Status"},"refresh_frequency":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Refresh Frequency"},"record_count":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Record Count"},"active_record_count":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Active Record Count"},"last_updated":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Last Updated"},"relationship_coverage":{"type":"string","enum":["verified_graph","verified_graph_partial","source_context_only","source_not_published","not_yet_ingested"],"title":"Relationship Coverage"},"relationship_coverage_notes":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Relationship Coverage Notes"}},"type":"object","required":["state","status","relationship_coverage"],"title":"CoverageStateRow"},"HTTPValidationError":{"properties":{"detail":{"items":{"$ref":"#/components/schemas/ValidationError"},"type":"array","title":"Detail"}},"type":"object","title":"HTTPValidationError"},"PaginationMeta":{"properties":{"total":{"type":"integer","title":"Total"},"page":{"type":"integer","title":"Page"},"per_page":{"type":"integer","title":"Per Page"}},"type":"object","required":["total","page","per_page"],"title":"PaginationMeta"},"PublicAddress":{"properties":{"kind":{"type":"string","title":"Kind"},"line1":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Line1"},"line2":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Line2"},"city":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"City"},"county":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"County"},"region":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Region"},"postal_code":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Postal Code"},"country":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Country"}},"type":"object","required":["kind"],"title":"PublicAddress"},"PublicBatchVerifyResponse":{"properties":{"data":{"items":{"$ref":"#/components/schemas/PublicBatchVerifyResult"},"type":"array","title":"Data"}},"type":"object","required":["data"],"title":"PublicBatchVerifyResponse"},"PublicBatchVerifyResult":{"properties":{"state":{"type":"string","title":"State"},"license_number":{"type":"string","title":"License Number"},"verified":{"type":"boolean","title":"Verified"},"licensee":{"anyOf":[{"$ref":"#/components/schemas/PublicLicensee"},{"type":"null"}]}},"type":"object","required":["state","license_number","verified"],"title":"PublicBatchVerifyResult"},"PublicDesignatedBroker":{"properties":{"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"license_number":{"type":"string","title":"License Number"},"address":{"anyOf":[{"$ref":"#/components/schemas/PublicAddress"},{"type":"null"}]}},"type":"object","required":["license_number"],"title":"PublicDesignatedBroker"},"PublicLicensee":{"properties":{"id":{"type":"string","title":"Id"},"full_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Full Name"},"license_number":{"type":"string","title":"License Number"},"license_number_display":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"License Number Display"},"license_type":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"License Type"},"license_type_display":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"License Type Display"},"status":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Status"},"state":{"type":"string","title":"State"},"issue_date":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Issue Date"},"expiration_date":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Expiration Date"},"brokerage":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Brokerage"},"relationship_coverage":{"type":"string","enum":["verified_graph","verified_graph_partial","source_context_only","source_not_published","not_yet_ingested"],"title":"Relationship Coverage"},"brokerage_source":{"anyOf":[{"type":"string","enum":["verified_supervision","business_name"]},{"type":"null"}],"title":"Brokerage Source"},"brokerage_confidence":{"anyOf":[{"type":"string","enum":["verified","source_reported"]},{"type":"null"}],"title":"Brokerage Confidence"},"supervision_empty_reason":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Supervision Empty Reason"},"supervising_brokerages":{"items":{"type":"string"},"type":"array","title":"Supervising Brokerages"},"supervising_brokerages_detail":{"items":{"$ref":"#/components/schemas/PublicSupervisorDetail"},"type":"array","title":"Supervising Brokerages Detail"},"employment_type":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Employment Type"},"designated_brokers":{"items":{"$ref":"#/components/schemas/PublicDesignatedBroker"},"type":"array","title":"Designated Brokers"},"designated_broker":{"anyOf":[{"$ref":"#/components/schemas/PublicDesignatedBroker"},{"type":"null"}]},"current_affiliate_roles":{"items":{"type":"string"},"type":"array","title":"Current Affiliate Roles"},"last_verified":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Last Verified"},"first_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"First Name"},"middle_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Middle Name"},"last_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Last Name"},"business_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Business Name"},"city":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"City"},"address":{"anyOf":[{"$ref":"#/components/schemas/PublicAddress"},{"type":"null"}]},"disciplinary_actions":{"items":{},"type":"array","title":"Disciplinary Actions"},"data_source_notes":{"items":{"type":"string"},"type":"array","title":"Data Source Notes"}},"type":"object","required":["id","license_number","state","relationship_coverage","supervising_brokerages","supervising_brokerages_detail","designated_brokers","current_affiliate_roles","disciplinary_actions","data_source_notes"],"title":"PublicLicensee"},"PublicLicenseeResponse":{"properties":{"data":{"$ref":"#/components/schemas/PublicLicensee"}},"type":"object","required":["data"],"title":"PublicLicenseeResponse"},"PublicLicenseeSearchResponse":{"properties":{"data":{"items":{"$ref":"#/components/schemas/PublicLicensee"},"type":"array","title":"Data"},"meta":{"$ref":"#/components/schemas/PaginationMeta"}},"type":"object","required":["data","meta"],"title":"PublicLicenseeSearchResponse"},"PublicLicenseeVerifyResponse":{"properties":{"verified":{"type":"boolean","title":"Verified"},"licensee":{"anyOf":[{"$ref":"#/components/schemas/PublicLicensee"},{"type":"null"}]}},"type":"object","required":["verified"],"title":"PublicLicenseeVerifyResponse"},"PublicSupervisorDetail":{"properties":{"name":{"type":"string","title":"Name"},"license_number":{"type":"string","title":"License Number"},"address":{"anyOf":[{"$ref":"#/components/schemas/PublicAddress"},{"type":"null"}]}},"type":"object","required":["name","license_number"],"title":"PublicSupervisorDetail"},"SupervisorItem":{"properties":{"license_credential_id":{"type":"string","title":"License Credential Id"},"license_number":{"type":"string","title":"License Number"},"full_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Full Name"},"license_class":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"License Class"},"affiliate_role":{"type":"string","title":"Affiliate Role"},"relationship_type":{"type":"string","title":"Relationship Type"},"effective_from":{"type":"string","title":"Effective From"},"effective_to":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Effective To"}},"type":"object","required":["license_credential_id","license_number","affiliate_role","relationship_type","effective_from"],"title":"SupervisorItem"},"SupervisorsResponse":{"properties":{"data":{"items":{"$ref":"#/components/schemas/SupervisorItem"},"type":"array","title":"Data"}},"type":"object","required":["data"],"title":"SupervisorsResponse"},"ValidationError":{"properties":{"loc":{"items":{"anyOf":[{"type":"string"},{"type":"integer"}]},"type":"array","title":"Location"},"msg":{"type":"string","title":"Message"},"type":{"type":"string","title":"Error Type"},"input":{"title":"Input"},"ctx":{"type":"object","title":"Context"}},"type":"object","required":["loc","msg","type"],"title":"ValidationError"}},"securitySchemes":{"ApiKeyBearer":{"type":"http","scheme":"bearer","description":"Dashboard API key. Example header: Authorization: Bearer rel_…"}}},"servers":[{"url":"https://app.realestatelicensedatabase.com","description":"Current environment"}],"externalDocs":{"description":"Developer hub (guides, Postman, AI context)","url":"https://www.realestatelicensedatabase.com/developers/"}}