{"openapi":"3.1.0","info":{"title":"SmartLord.ai Developer API","version":"0.1.0","description":"Public REST surface for SmartLord.ai. Bearer-authed with sk_test_ or sk_live_ keys generated from the Developer dashboard. See https://www.Smartlord.ai/docs/api for human-readable docs."},"servers":[{"url":"https://www.Smartlord.ai","description":"Production"}],"paths":{"/api/v1/external/properties":{"get":{"tags":["Developer API External"],"summary":"List Properties","description":"Returns properties in the portfolio, ordered by id ascending so\ncursors are stable across writes.","operationId":"list_properties_api_v1_external_properties_get","parameters":[{"name":"limit","in":"query","required":false,"schema":{"type":"integer","maximum":100,"minimum":1,"default":20,"title":"Limit"}},{"name":"starting_after","in":"query","required":false,"schema":{"anyOf":[{"type":"string","maxLength":100},{"type":"null"}],"title":"Starting After"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ListEnvelope_PropertyOut_"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"post":{"tags":["Developer API External"],"summary":"Create Property","description":"Create a property and one default unit.\n\nPublic-API surface is intentionally narrower than the dashboard's\nmulti-unit form: one property, one unit, no deed lookup. Use the\ndashboard to verify the property and add additional units after\ncreation.\n\nRespects the user's plan unit limit via Subscription.max_units.\nHonors Idempotency-Key per the /docs/api contract.","operationId":"create_property_api_v1_external_properties_post","requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/app__features__developer__api__public_api__PropertyCreate"}}}},"responses":{"201":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PropertyOut"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/external/properties/{property_id}":{"get":{"tags":["Developer API External"],"summary":"Retrieve Property","operationId":"retrieve_property_api_v1_external_properties__property_id__get","parameters":[{"name":"property_id","in":"path","required":true,"schema":{"type":"string","title":"Property Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PropertyOut"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/external/tenants":{"get":{"tags":["Developer API External"],"summary":"List Tenants","operationId":"list_tenants_api_v1_external_tenants_get","parameters":[{"name":"limit","in":"query","required":false,"schema":{"type":"integer","maximum":100,"minimum":1,"default":20,"title":"Limit"}},{"name":"starting_after","in":"query","required":false,"schema":{"anyOf":[{"type":"string","maxLength":100},{"type":"null"}],"title":"Starting After"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ListEnvelope_TenantOut_"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/external/tenants/invite":{"post":{"tags":["Developer API External"],"summary":"Invite Tenant","description":"Create an applicant lead + send the apply-now email.\n\nThe lead is locked to the API key owner's portfolio. The unit_id\nmust belong to a property the owner controls; cross-portfolio\ninvites get a 404 so we don't leak unit existence. Honors\nIdempotency-Key so a flaky retry doesn't double-send the email.","operationId":"invite_tenant_api_v1_external_tenants_invite_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TenantInviteCreate"}}},"required":true},"responses":{"201":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TenantInviteOut"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/external/leases":{"get":{"tags":["Developer API External"],"summary":"List Leases","description":"Leases are scoped to the portfolio via Unit -> Property.landlord_id.","operationId":"list_leases_api_v1_external_leases_get","parameters":[{"name":"limit","in":"query","required":false,"schema":{"type":"integer","maximum":100,"minimum":1,"default":20,"title":"Limit"}},{"name":"starting_after","in":"query","required":false,"schema":{"anyOf":[{"type":"string","maxLength":100},{"type":"null"}],"title":"Starting After"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ListEnvelope_LeaseOut_"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/external/maintenance/tickets":{"get":{"tags":["Developer API External"],"summary":"List Maintenance Tickets","operationId":"list_maintenance_tickets_api_v1_external_maintenance_tickets_get","parameters":[{"name":"limit","in":"query","required":false,"schema":{"type":"integer","maximum":100,"minimum":1,"default":20,"title":"Limit"}},{"name":"starting_after","in":"query","required":false,"schema":{"anyOf":[{"type":"string","maxLength":100},{"type":"null"}],"title":"Starting After"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ListEnvelope_MaintenanceTicketOut_"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/external/payments":{"get":{"tags":["Developer API External"],"summary":"List Payments","operationId":"list_payments_api_v1_external_payments_get","parameters":[{"name":"limit","in":"query","required":false,"schema":{"type":"integer","maximum":100,"minimum":1,"default":20,"title":"Limit"}},{"name":"starting_after","in":"query","required":false,"schema":{"anyOf":[{"type":"string","maxLength":100},{"type":"null"}],"title":"Starting After"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ListEnvelope_PaymentOut_"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/external/webhooks/endpoints":{"post":{"tags":["Developer API External"],"summary":"Create Webhook Endpoint","description":"Register a new endpoint. The signing secret is returned in this\nresponse and never shown again; persist it on your side or fetch\na fresh secret by rotating the endpoint. Honors Idempotency-Key.","operationId":"create_webhook_endpoint_api_v1_external_webhooks_endpoints_post","requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WebhookEndpointCreate"}}}},"responses":{"201":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/WebhookEndpointOut"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"get":{"tags":["Developer API External"],"summary":"List Webhook Endpoints","operationId":"list_webhook_endpoints_api_v1_external_webhooks_endpoints_get","parameters":[{"name":"limit","in":"query","required":false,"schema":{"type":"integer","maximum":100,"minimum":1,"default":20,"title":"Limit"}},{"name":"starting_after","in":"query","required":false,"schema":{"anyOf":[{"type":"string","maxLength":100},{"type":"null"}],"title":"Starting After"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ListEnvelope_WebhookEndpointOut_"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/external/webhooks/endpoints/{endpoint_id}":{"delete":{"tags":["Developer API External"],"summary":"Delete Webhook Endpoint","description":"Soft-disable the endpoint. Pending deliveries already enqueued\nwill not be sent; existing delivery history is preserved.","operationId":"delete_webhook_endpoint_api_v1_external_webhooks_endpoints__endpoint_id__delete","parameters":[{"name":"endpoint_id","in":"path","required":true,"schema":{"type":"string","title":"Endpoint Id"}}],"responses":{"204":{"description":"Successful Response"},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}}},"components":{"schemas":{"ACHSetupPayload":{"properties":{"tenant_email":{"type":"string","title":"Tenant Email"},"tenant_name":{"type":"string","title":"Tenant Name"}},"type":"object","required":["tenant_email","tenant_name"],"title":"ACHSetupPayload"},"AIRationaleRequest":{"properties":{"q":{"type":"string","title":"Q"},"listings":{"items":{"additionalProperties":true,"type":"object"},"type":"array","title":"Listings"}},"type":"object","required":["q","listings"],"title":"AIRationaleRequest"},"AISearchRequest":{"properties":{"q":{"type":"string","title":"Q"}},"type":"object","required":["q"],"title":"AISearchRequest"},"AccessRequestCreate":{"properties":{"company_name":{"anyOf":[{"type":"string","maxLength":255},{"type":"null"}],"title":"Company Name"},"contact_email":{"type":"string","format":"email","title":"Contact Email"},"use_case":{"type":"string","maxLength":2000,"minLength":20,"title":"Use Case"},"expected_monthly_calls":{"anyOf":[{"type":"integer","maximum":100000000.0,"minimum":0.0},{"type":"null"}],"title":"Expected Monthly Calls"},"integration_type":{"anyOf":[{"type":"string","maxLength":80},{"type":"null"}],"title":"Integration Type"},"website_url":{"anyOf":[{"type":"string","maxLength":500},{"type":"null"}],"title":"Website Url"},"agreed_to_terms":{"type":"boolean","title":"Agreed To Terms"}},"type":"object","required":["contact_email","use_case","agreed_to_terms"],"title":"AccessRequestCreate"},"AccessRequestOut":{"properties":{"id":{"type":"string","title":"Id"},"status":{"type":"string","title":"Status"},"company_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Company Name"},"contact_email":{"type":"string","title":"Contact Email"},"use_case":{"type":"string","title":"Use Case"},"expected_monthly_calls":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Expected Monthly Calls"},"integration_type":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Integration Type"},"website_url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Website Url"},"submitted_at":{"type":"string","format":"date-time","title":"Submitted At"},"reviewed_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Reviewed At"},"review_notes":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Review Notes"},"denial_reason":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Denial Reason"}},"type":"object","required":["id","status","company_name","contact_email","use_case","expected_monthly_calls","integration_type","website_url","submitted_at","reviewed_at","review_notes","denial_reason"],"title":"AccessRequestOut"},"AddChargeRequest":{"properties":{"tenant_id":{"type":"string","title":"Tenant Id"},"unit_id":{"type":"string","title":"Unit Id"},"amount":{"type":"number","exclusiveMinimum":0.0,"title":"Amount"},"charge_type":{"type":"string","title":"Charge Type"},"description":{"type":"string","title":"Description"},"due_date":{"type":"string","title":"Due Date"}},"type":"object","required":["tenant_id","unit_id","amount","charge_type","description","due_date"],"title":"AddChargeRequest"},"AddItemRequest":{"properties":{"area":{"type":"string","maxLength":100,"title":"Area"},"issue_detected":{"type":"string","maxLength":255,"title":"Issue Detected"},"photo_url_before":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Photo Url Before"},"photo_url_after":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Photo Url After"},"labor_estimate":{"type":"number","title":"Labor Estimate","default":0.0},"local_material_avg":{"type":"number","title":"Local Material Avg","default":0.0}},"type":"object","required":["area","issue_detected"],"title":"AddItemRequest"},"AddTenantToLeaseRequest":{"properties":{"new_tenant_name":{"type":"string","maxLength":200,"minLength":1,"title":"New Tenant Name"},"new_tenant_email":{"type":"string","maxLength":255,"minLength":3,"title":"New Tenant Email"},"effective_date":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Effective Date","description":"YYYY-MM-DD; defaults to today"},"contributes_deposit":{"type":"boolean","title":"Contributes Deposit","default":false},"deposit_contribution":{"type":"number","maximum":100000.0,"minimum":0.0,"title":"Deposit Contribution","default":0.0},"screening_completed":{"type":"boolean","title":"Screening Completed","default":false}},"type":"object","required":["new_tenant_name","new_tenant_email"],"title":"AddTenantToLeaseRequest"},"AddendumRequest":{"properties":{"lease_id":{"type":"string","title":"Lease Id"},"intent":{"type":"string","title":"Intent"}},"type":"object","required":["lease_id","intent"],"title":"AddendumRequest"},"AdditionalSettingsUpdate":{"properties":{"maintenance_cc_emails":{"type":"string","title":"Maintenance Cc Emails"}},"type":"object","title":"AdditionalSettingsUpdate"},"AddressPrefillPayload":{"properties":{"street_address":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Street Address"},"city":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"City"},"state":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"State"},"zip_code":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Zip Code"}},"type":"object","title":"AddressPrefillPayload"},"AdverseActionRequest":{"properties":{"lead_id":{"type":"string","title":"Lead Id"},"reasons":{"items":{"type":"string"},"type":"array","title":"Reasons"}},"type":"object","required":["lead_id","reasons"],"title":"AdverseActionRequest"},"AdvisorResponse":{"properties":{"suggestions":{"items":{"$ref":"#/components/schemas/Suggestion"},"type":"array","title":"Suggestions"},"snapshot":{"additionalProperties":true,"type":"object","title":"Snapshot"},"cached":{"type":"boolean","title":"Cached","default":false},"generated_at":{"type":"string","title":"Generated At"}},"type":"object","required":["suggestions","snapshot","generated_at"],"title":"AdvisorResponse"},"AmenitiesSuggestionPayload":{"properties":{"property_type":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Property Type"},"year_built":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Year Built"},"num_units":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Num Units","default":1},"beds":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Beds","default":0},"baths":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Baths","default":0.0},"street_address":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Street Address"},"city":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"City"},"state":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"State"},"zip_code":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Zip Code"}},"type":"object","title":"AmenitiesSuggestionPayload"},"AnnounceOnlinePaymentsRequest":{"properties":{"subject":{"type":"string","title":"Subject"},"message":{"type":"string","title":"Message"}},"type":"object","required":["subject","message"],"title":"AnnounceOnlinePaymentsRequest"},"ApiKeyCreate":{"properties":{"name":{"type":"string","maxLength":120,"minLength":1,"title":"Name"},"mode":{"type":"string","title":"Mode"}},"type":"object","required":["name","mode"],"title":"ApiKeyCreate"},"ApiKeyOut":{"properties":{"id":{"type":"string","title":"Id"},"name":{"type":"string","title":"Name"},"mode":{"type":"string","title":"Mode"},"key_prefix":{"type":"string","title":"Key Prefix"},"created_at":{"type":"string","format":"date-time","title":"Created At"},"last_used_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Last Used At"},"revoked_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Revoked At"},"expires_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Expires At"},"plaintext":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Plaintext"}},"type":"object","required":["id","name","mode","key_prefix","created_at","last_used_at","revoked_at","expires_at"],"title":"ApiKeyOut"},"AppSubmitForm":{"properties":{"first_name":{"type":"string","title":"First Name"},"last_name":{"type":"string","title":"Last Name"},"annual_income":{"type":"number","title":"Annual Income","default":0.0},"employer_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Employer Name"},"date_of_birth":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Date Of Birth"},"phone":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Phone"},"email":{"type":"string","title":"Email"},"previous_address":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Previous Address"},"property_id":{"type":"string","title":"Property Id"},"lead_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Lead Id"},"background_consent_given":{"type":"boolean","title":"Background Consent Given","default":false},"disclosure_acknowledged":{"type":"boolean","title":"Disclosure Acknowledged","default":false},"background_authorization_given":{"type":"boolean","title":"Background Authorization Given","default":false},"disclosure_viewed_full":{"type":"boolean","title":"Disclosure Viewed Full","default":false},"summary_of_rights_viewed":{"type":"boolean","title":"Summary Of Rights Viewed","default":false},"consent_signature_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Consent Signature Name"},"consent_timestamp":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Consent Timestamp"},"wet_signature_base64":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Wet Signature Base64"}},"type":"object","required":["first_name","last_name","email","property_id"],"title":"AppSubmitForm"},"ApplyCalculatorRequest":{"properties":{"prorated_rent":{"type":"number","maximum":200000.0,"minimum":0.0,"title":"Prorated Rent","default":0.0},"billable_days":{"type":"integer","maximum":31.0,"minimum":0.0,"title":"Billable Days","default":0},"daily_rate":{"type":"number","maximum":10000.0,"minimum":0.0,"title":"Daily Rate","default":0.0},"move_in_date":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Move In Date","description":"YYYY-MM-DD; falls back to lease.start_date"},"late_fee_amount":{"anyOf":[{"type":"number","maximum":10000.0,"minimum":0.0},{"type":"null"}],"title":"Late Fee Amount"},"late_fee_days_grace":{"anyOf":[{"type":"integer","maximum":60.0,"minimum":0.0},{"type":"null"}],"title":"Late Fee Days Grace"},"apply_proration":{"type":"boolean","title":"Apply Proration","default":true},"apply_late_fee_policy":{"type":"boolean","title":"Apply Late Fee Policy","default":true}},"type":"object","title":"ApplyCalculatorRequest"},"ApplyPricingRequest":{"properties":{"unit_id":{"type":"string","title":"Unit Id"},"suggested_rent":{"type":"number","title":"Suggested Rent"},"rationale":{"type":"string","title":"Rationale","default":""},"action":{"type":"string","title":"Action","default":"apply"}},"type":"object","required":["unit_id","suggested_rent"],"title":"ApplyPricingRequest"},"AskLeaseQuestionRequest":{"properties":{"question":{"type":"string","title":"Question"},"clause":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Clause"}},"type":"object","required":["question"],"title":"AskLeaseQuestionRequest"},"AskLeaseQuestionResponse":{"properties":{"answer":{"type":"string","title":"Answer"},"plain_summary":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Plain Summary"},"cached":{"type":"boolean","title":"Cached","default":false}},"type":"object","required":["answer"],"title":"AskLeaseQuestionResponse"},"BankReconciliationRequest":{"properties":{"transaction_id":{"type":"integer","title":"Transaction Id"},"ledger_id":{"type":"integer","title":"Ledger Id"}},"type":"object","required":["transaction_id","ledger_id"],"title":"BankReconciliationRequest"},"BenefitPackageCreate":{"properties":{"name":{"type":"string","title":"Name"},"coverage_type":{"type":"string","title":"Coverage Type"},"monthly_premium":{"type":"number","title":"Monthly Premium"},"provider":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Provider"},"is_required":{"type":"boolean","title":"Is Required","default":false},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"}},"type":"object","required":["name","coverage_type","monthly_premium"],"title":"BenefitPackageCreate"},"BenefitPackageUpdate":{"properties":{"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"coverage_type":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Coverage Type"},"monthly_premium":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Monthly Premium"},"provider":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Provider"},"is_required":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Is Required"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"is_active":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Is Active"}},"type":"object","title":"BenefitPackageUpdate"},"BidSubmission":{"properties":{"vendor_id":{"type":"string","title":"Vendor Id"},"estimated_cost":{"type":"number","title":"Estimated Cost"},"earliest_start_date":{"type":"string","title":"Earliest Start Date"},"notes":{"type":"string","title":"Notes"}},"type":"object","required":["vendor_id","estimated_cost","earliest_start_date","notes"],"title":"BidSubmission"},"BindPolicyRequest":{"properties":{"unit_id":{"type":"string","title":"Unit Id"},"tenant_id":{"type":"string","title":"Tenant Id"},"provider_id":{"type":"string","title":"Provider Id"},"external_quote_id":{"type":"string","title":"External Quote Id"},"payment_token":{"type":"string","title":"Payment Token"}},"type":"object","required":["unit_id","tenant_id","provider_id","external_quote_id","payment_token"],"title":"BindPolicyRequest"},"Body_amenity_detect_api_v1_intelligence_ai_amenity_detect_post":{"properties":{"photos":{"items":{"type":"string","contentMediaType":"application/octet-stream"},"type":"array","title":"Photos"}},"type":"object","required":["photos"],"title":"Body_amenity_detect_api_v1_intelligence_ai_amenity_detect_post"},"Body_analyze_inspection_photo_api_v1_inspections_analyze_post":{"properties":{"inspection_id":{"type":"string","title":"Inspection Id"},"area":{"type":"string","title":"Area"},"file":{"type":"string","contentMediaType":"application/octet-stream","title":"File"}},"type":"object","required":["inspection_id","area","file"],"title":"Body_analyze_inspection_photo_api_v1_inspections_analyze_post"},"Body_analyze_inspection_video_api_v1_inspections__inspection_id__analyze_video_post":{"properties":{"file":{"type":"string","contentMediaType":"application/octet-stream","title":"File"}},"type":"object","required":["file"],"title":"Body_analyze_inspection_video_api_v1_inspections__inspection_id__analyze_video_post"},"Body_approve_via_link_a__request_id__approve_post":{"properties":{"token":{"type":"string","title":"Token"}},"type":"object","required":["token"],"title":"Body_approve_via_link_a__request_id__approve_post"},"Body_audit_lease_document_api_v1_intelligence_audit_lease_post":{"properties":{"file":{"type":"string","contentMediaType":"application/octet-stream","title":"File"},"state":{"type":"string","title":"State"}},"type":"object","required":["file"],"title":"Body_audit_lease_document_api_v1_intelligence_audit_lease_post"},"Body_check_email_exists_api_v1_auth_check_email_post":{"properties":{"email":{"type":"string","title":"Email"}},"type":"object","required":["email"],"title":"Body_check_email_exists_api_v1_auth_check_email_post"},"Body_compare_vendor_bids_api_v1_intelligence_compare_bids_post":{"properties":{"files":{"items":{"type":"string","contentMediaType":"application/octet-stream"},"type":"array","title":"Files"}},"type":"object","required":["files"],"title":"Body_compare_vendor_bids_api_v1_intelligence_compare_bids_post"},"Body_completion_verify_api_v1_maintenance_ai_completion_verify_post":{"properties":{"ticket_id":{"type":"string","title":"Ticket Id"},"before_photos":{"items":{"type":"string","contentMediaType":"application/octet-stream"},"type":"array","title":"Before Photos"},"after_photos":{"items":{"type":"string","contentMediaType":"application/octet-stream"},"type":"array","title":"After Photos"}},"type":"object","required":["ticket_id","after_photos"],"title":"Body_completion_verify_api_v1_maintenance_ai_completion_verify_post"},"Body_confirm_phone_verification_api_v1_auth_confirm_phone_verification_post":{"properties":{"code":{"type":"string","title":"Code"}},"type":"object","required":["code"],"title":"Body_confirm_phone_verification_api_v1_auth_confirm_phone_verification_post"},"Body_create_ticket_with_photo_api_v1_maintenance_tickets_create_with_photo_post":{"properties":{"title":{"type":"string","title":"Title"},"description":{"type":"string","title":"Description"},"priority":{"type":"string","title":"Priority","default":"medium"},"permission_to_enter":{"type":"boolean","title":"Permission To Enter","default":false},"photo":{"type":"string","contentMediaType":"application/octet-stream","title":"Photo"}},"type":"object","required":["title","description"],"title":"Body_create_ticket_with_photo_api_v1_maintenance_tickets_create_with_photo_post"},"Body_deposit_photo_compare_api_v1_tenants_ai_deposit_photo_compare_post":{"properties":{"lease_id":{"type":"string","title":"Lease Id"},"move_in_photos":{"items":{"type":"string","contentMediaType":"application/octet-stream"},"type":"array","title":"Move In Photos"},"move_out_photos":{"items":{"type":"string","contentMediaType":"application/octet-stream"},"type":"array","title":"Move Out Photos"},"inspector_notes":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Inspector Notes"}},"type":"object","required":["lease_id","move_out_photos"],"title":"Body_deposit_photo_compare_api_v1_tenants_ai_deposit_photo_compare_post"},"Body_doc_quality_grade_api_v1_intelligence_ai_doc_quality_grade_post":{"properties":{"document":{"type":"string","contentMediaType":"application/octet-stream","title":"Document"}},"type":"object","required":["document"],"title":"Body_doc_quality_grade_api_v1_intelligence_ai_doc_quality_grade_post"},"Body_document_move_in_api_v1_intelligence_document_move_in_post":{"properties":{"photo":{"type":"string","contentMediaType":"application/octet-stream","title":"Photo"},"room_label":{"type":"string","title":"Room Label","default":""}},"type":"object","required":["photo"],"title":"Body_document_move_in_api_v1_intelligence_document_move_in_post"},"Body_extract_application_data_api_v1_intelligence_extract_application_data_post":{"properties":{"file":{"type":"string","contentMediaType":"application/octet-stream","title":"File"}},"type":"object","required":["file"],"title":"Body_extract_application_data_api_v1_intelligence_extract_application_data_post"},"Body_extract_application_data_public_api_v1_intelligence_extract_application_data_public_post":{"properties":{"file":{"type":"string","contentMediaType":"application/octet-stream","title":"File"}},"type":"object","required":["file"],"title":"Body_extract_application_data_public_api_v1_intelligence_extract_application_data_public_post"},"Body_extract_business_profile_from_doc_api_v1_auth_profile_extract_business_post":{"properties":{"file":{"type":"string","contentMediaType":"application/octet-stream","title":"File"}},"type":"object","required":["file"],"title":"Body_extract_business_profile_from_doc_api_v1_auth_profile_extract_business_post"},"Body_extract_document_api_v1_intelligence_extract_document_post":{"properties":{"file":{"type":"string","contentMediaType":"application/octet-stream","title":"File"},"document_type":{"type":"string","title":"Document Type","default":"residential"}},"type":"object","required":["file"],"title":"Body_extract_document_api_v1_intelligence_extract_document_post"},"Body_extract_document_studio_data_api_v1_extract_document_post":{"properties":{"file":{"type":"string","contentMediaType":"application/octet-stream","title":"File"},"document_type":{"type":"string","title":"Document Type"}},"type":"object","required":["file","document_type"],"title":"Body_extract_document_studio_data_api_v1_extract_document_post"},"Body_extract_floor_plan_api_v1_intelligence_extract_floor_plan_post":{"properties":{"file":{"type":"string","contentMediaType":"application/octet-stream","title":"File"}},"type":"object","required":["file"],"title":"Body_extract_floor_plan_api_v1_intelligence_extract_floor_plan_post"},"Body_extract_insurance_declaration_api_v1_intelligence_extract_insurance_post":{"properties":{"file":{"type":"string","contentMediaType":"application/octet-stream","title":"File"}},"type":"object","required":["file"],"title":"Body_extract_insurance_declaration_api_v1_intelligence_extract_insurance_post"},"Body_extract_legal_mail_api_v1_intelligence_extract_legal_mail_post":{"properties":{"file":{"type":"string","contentMediaType":"application/octet-stream","title":"File"}},"type":"object","required":["file"],"title":"Body_extract_legal_mail_api_v1_intelligence_extract_legal_mail_post"},"Body_extract_signup_prefill_api_v1_auth_register_extract_prefill_post":{"properties":{"file":{"type":"string","contentMediaType":"application/octet-stream","title":"File"}},"type":"object","required":["file"],"title":"Body_extract_signup_prefill_api_v1_auth_register_extract_prefill_post"},"Body_extract_ticket_invoice_api_v1_maintenance_tickets__ticket_id__invoice_extract_post":{"properties":{"invoice_file":{"type":"string","contentMediaType":"application/octet-stream","title":"Invoice File"}},"type":"object","required":["invoice_file"],"title":"Body_extract_ticket_invoice_api_v1_maintenance_tickets__ticket_id__invoice_extract_post"},"Body_extract_vendor_invoice_api_v1_intelligence_extract_vendor_invoice_post":{"properties":{"file":{"type":"string","contentMediaType":"application/octet-stream","title":"File"}},"type":"object","required":["file"],"title":"Body_extract_vendor_invoice_api_v1_intelligence_extract_vendor_invoice_post"},"Body_extract_vendor_w9_preview_api_v1_vendors__vendor_id__w9_extract_post":{"properties":{"file":{"type":"string","contentMediaType":"application/octet-stream","title":"File"}},"type":"object","required":["file"],"title":"Body_extract_vendor_w9_preview_api_v1_vendors__vendor_id__w9_extract_post"},"Body_extract_w9_api_v1_landlord_tax_info_extract_post":{"properties":{"file":{"type":"string","contentMediaType":"application/octet-stream","title":"File"}},"type":"object","required":["file"],"title":"Body_extract_w9_api_v1_landlord_tax_info_extract_post"},"Body_extract_w9_data_api_v1_intelligence_extract_w9_post":{"properties":{"file":{"type":"string","contentMediaType":"application/octet-stream","title":"File"}},"type":"object","required":["file"],"title":"Body_extract_w9_data_api_v1_intelligence_extract_w9_post"},"Body_fallback_check_email_api_v1_auth_check_email_post":{"properties":{"email":{"type":"string","title":"Email"}},"type":"object","required":["email"],"title":"Body_fallback_check_email_api_v1_auth_check_email_post"},"Body_forgot_password_api_v1_auth_forgot_password_post":{"properties":{"email":{"type":"string","title":"Email"}},"type":"object","required":["email"],"title":"Body_forgot_password_api_v1_auth_forgot_password_post"},"Body_forgot_password_phone_api_v1_auth_forgot_password_phone_post":{"properties":{"phone":{"type":"string","title":"Phone"}},"type":"object","required":["phone"],"title":"Body_forgot_password_phone_api_v1_auth_forgot_password_phone_post"},"Body_generate_ai_description_api_v1_marketing_generate_description_post":{"properties":{"files":{"items":{"type":"string","contentMediaType":"application/octet-stream"},"type":"array","title":"Files","default":[]},"tone":{"type":"string","title":"Tone","default":"default"},"unit_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Unit Id"}},"type":"object","title":"Body_generate_ai_description_api_v1_marketing_generate_description_post"},"Body_generate_ai_description_stream_api_v1_marketing_generate_description_stream_post":{"properties":{"files":{"items":{"type":"string","contentMediaType":"application/octet-stream"},"type":"array","title":"Files"}},"type":"object","required":["files"],"title":"Body_generate_ai_description_stream_api_v1_marketing_generate_description_stream_post"},"Body_grade_listing_photo_api_v1_intelligence_grade_listing_photo_post":{"properties":{"photo":{"type":"string","contentMediaType":"application/octet-stream","title":"Photo"},"room_label":{"type":"string","title":"Room Label","default":""}},"type":"object","required":["photo"],"title":"Body_grade_listing_photo_api_v1_intelligence_grade_listing_photo_post"},"Body_initiate_2fa_login_api_v1_auth_login_initiate_2fa_post":{"properties":{"email":{"type":"string","title":"Email"},"password":{"type":"string","title":"Password","default":""},"remember_me":{"type":"string","title":"Remember Me","default":"0"}},"type":"object","required":["email"],"title":"Body_initiate_2fa_login_api_v1_auth_login_initiate_2fa_post"},"Body_inspection_from_photos_api_v1_ai_inspection_from_photos_post":{"properties":{"photos":{"items":{"type":"string","contentMediaType":"application/octet-stream"},"type":"array","title":"Photos"},"inspection_type":{"type":"string","title":"Inspection Type","default":"move_in"},"property_address":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Property Address"}},"type":"object","required":["photos"],"title":"Body_inspection_from_photos_api_v1_ai_inspection_from_photos_post"},"Body_inspection_from_video_api_v1_ai_inspection_from_video_post":{"properties":{"video":{"type":"string","contentMediaType":"application/octet-stream","title":"Video"},"inspection_type":{"type":"string","title":"Inspection Type","default":"move_in"},"property_address":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Property Address"}},"type":"object","required":["video"],"title":"Body_inspection_from_video_api_v1_ai_inspection_from_video_post"},"Body_inspection_move_in_compare_api_v1_ai_inspection_move_in_compare_post":{"properties":{"move_in_photos":{"items":{"type":"string","contentMediaType":"application/octet-stream"},"type":"array","title":"Move In Photos"},"baseline_photos":{"items":{"type":"string","contentMediaType":"application/octet-stream"},"type":"array","title":"Baseline Photos","default":[]},"property_address":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Property Address"}},"type":"object","required":["move_in_photos"],"title":"Body_inspection_move_in_compare_api_v1_ai_inspection_move_in_compare_post"},"Body_invoice_fraud_check_api_v1_maintenance_ai_invoice_fraud_check_post":{"properties":{"invoice":{"type":"string","contentMediaType":"application/octet-stream","title":"Invoice"},"vendor_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Vendor Id"}},"type":"object","required":["invoice"],"title":"Body_invoice_fraud_check_api_v1_maintenance_ai_invoice_fraud_check_post"},"Body_mark_ticket_complete_api_v1_vendors_tickets__ticket_id__complete_post":{"properties":{"notes":{"type":"string","title":"Notes"},"invoice_file":{"type":"string","contentMediaType":"application/octet-stream","title":"Invoice File"}},"type":"object","required":["notes","invoice_file"],"title":"Body_mark_ticket_complete_api_v1_vendors_tickets__ticket_id__complete_post"},"Body_onboarding_compliance_api_v1_maintenance_ai_onboarding_compliance_post":{"properties":{"w9":{"anyOf":[{"type":"string","contentMediaType":"application/octet-stream"},{"type":"null"}],"title":"W9"},"coi":{"anyOf":[{"type":"string","contentMediaType":"application/octet-stream"},{"type":"null"}],"title":"Coi"}},"type":"object","title":"Body_onboarding_compliance_api_v1_maintenance_ai_onboarding_compliance_post"},"Body_paystub_fraud_check_api_v1_intelligence_ai_paystub_fraud_check_post":{"properties":{"paystub":{"type":"string","contentMediaType":"application/octet-stream","title":"Paystub"},"stated_income_monthly":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Stated Income Monthly"}},"type":"object","required":["paystub"],"title":"Body_paystub_fraud_check_api_v1_intelligence_ai_paystub_fraud_check_post"},"Body_photo_flag_api_v1_intelligence_ai_photo_flag_post":{"properties":{"photo":{"type":"string","contentMediaType":"application/octet-stream","title":"Photo"}},"type":"object","required":["photo"],"title":"Body_photo_flag_api_v1_intelligence_ai_photo_flag_post"},"Body_photo_rank_api_v1_intelligence_ai_photo_rank_post":{"properties":{"photos":{"items":{"type":"string","contentMediaType":"application/octet-stream"},"type":"array","title":"Photos"}},"type":"object","required":["photos"],"title":"Body_photo_rank_api_v1_intelligence_ai_photo_rank_post"},"Body_portfolio_import_api_v1_intelligence_ai_portfolio_import_post":{"properties":{"file":{"type":"string","contentMediaType":"application/octet-stream","title":"File"},"file_type_hint":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"File Type Hint"}},"type":"object","required":["file"],"title":"Body_portfolio_import_api_v1_intelligence_ai_portfolio_import_post"},"Body_process_migration_upload_api_v1_migration_upload_post":{"properties":{"files":{"items":{"type":"string","contentMediaType":"application/octet-stream"},"type":"array","title":"Files"}},"type":"object","title":"Body_process_migration_upload_api_v1_migration_upload_post"},"Body_public_analyze_damage_api_v1_analyze_damage_post":{"properties":{"file":{"type":"string","contentMediaType":"application/octet-stream","title":"File"}},"type":"object","required":["file"],"title":"Body_public_analyze_damage_api_v1_analyze_damage_post"},"Body_public_demo_categorize_receipt_api_v1_public_demo_categorize_receipt_post":{"properties":{"file":{"anyOf":[{"type":"string","contentMediaType":"application/octet-stream"},{"type":"null"}],"title":"File"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"}},"type":"object","title":"Body_public_demo_categorize_receipt_api_v1_public_demo_categorize_receipt_post"},"Body_public_try_description_stream_api_v1_marketing_public_try_description_stream_post":{"properties":{"file":{"type":"string","contentMediaType":"application/octet-stream","title":"File"}},"type":"object","required":["file"],"title":"Body_public_try_description_stream_api_v1_marketing_public_try_description_stream_post"},"Body_receipt_extract_api_v1_financial_ai_receipt_extract_post":{"properties":{"receipt":{"type":"string","contentMediaType":"application/octet-stream","title":"Receipt"},"hint_category":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Hint Category"}},"type":"object","required":["receipt"],"title":"Body_receipt_extract_api_v1_financial_ai_receipt_extract_post"},"Body_reconcile_move_out_photos_api_v1_intelligence_reconcile_move_out_post":{"properties":{"move_in_photo":{"items":{"type":"string","contentMediaType":"application/octet-stream"},"type":"array","title":"Move In Photo"},"move_out_photo":{"items":{"type":"string","contentMediaType":"application/octet-stream"},"type":"array","title":"Move Out Photo"},"room_label":{"items":{"type":"string"},"type":"array","title":"Room Label","default":[]}},"type":"object","required":["move_in_photo","move_out_photo"],"title":"Body_reconcile_move_out_photos_api_v1_intelligence_reconcile_move_out_post"},"Body_reconcile_move_out_reconcile_move_out_post":{"properties":{"move_in_photo":{"type":"string","contentMediaType":"application/octet-stream","title":"Move In Photo"},"move_out_photo":{"type":"string","contentMediaType":"application/octet-stream","title":"Move Out Photo"}},"type":"object","required":["move_in_photo","move_out_photo"],"title":"Body_reconcile_move_out_reconcile_move_out_post"},"Body_register_user_api_v1_auth_register_post":{"properties":{"first_name":{"type":"string","title":"First Name"},"last_name":{"type":"string","title":"Last Name"},"email":{"type":"string","title":"Email"},"password":{"type":"string","title":"Password"},"phone":{"type":"string","title":"Phone"},"code":{"type":"string","title":"Code"},"role":{"type":"string","title":"Role","default":"landlord"},"next_url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Next Url"},"promo":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Promo"},"verification_token":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Verification Token"},"preferred_language":{"type":"string","title":"Preferred Language","default":"English"},"agree_sms":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Agree Sms"}},"type":"object","required":["first_name","last_name","email","password","phone","code"],"title":"Body_register_user_api_v1_auth_register_post"},"Body_reject_via_link_a__request_id__reject_post":{"properties":{"token":{"type":"string","title":"Token"}},"type":"object","required":["token"],"title":"Body_reject_via_link_a__request_id__reject_post"},"Body_renter_listing_photo_upload_api_v1_renter_directory_listing_photo_post":{"properties":{"file":{"type":"string","contentMediaType":"application/octet-stream","title":"File"}},"type":"object","required":["file"],"title":"Body_renter_listing_photo_upload_api_v1_renter_directory_listing_photo_post"},"Body_request_otp_login_api_v1_auth_login_request_otp_post":{"properties":{"email":{"type":"string","title":"Email"},"delivery_method":{"type":"string","title":"Delivery Method","default":"auto"}},"type":"object","required":["email"],"title":"Body_request_otp_login_api_v1_auth_login_request_otp_post"},"Body_request_secure_document_api_v1_landlord_vault_request_post":{"properties":{"tenant_email":{"type":"string","title":"Tenant Email"},"requested_document_name":{"type":"string","title":"Requested Document Name"},"due_date":{"type":"string","title":"Due Date"}},"type":"object","required":["tenant_email","requested_document_name"],"title":"Body_request_secure_document_api_v1_landlord_vault_request_post"},"Body_reset_password_api_v1_auth_reset_password_post":{"properties":{"token":{"type":"string","title":"Token"},"new_password":{"type":"string","title":"New Password"},"confirm_password":{"type":"string","title":"Confirm Password","default":""}},"type":"object","required":["token","new_password"],"title":"Body_reset_password_api_v1_auth_reset_password_post"},"Body_reset_password_otp_api_v1_auth_reset_password_otp_post":{"properties":{"phone":{"type":"string","title":"Phone"},"code":{"type":"string","title":"Code"},"new_password":{"type":"string","title":"New Password"}},"type":"object","required":["phone","code","new_password"],"title":"Body_reset_password_otp_api_v1_auth_reset_password_otp_post"},"Body_scan_paystub_api_v1_screening_scan_paystub_post":{"properties":{"lead_id":{"type":"string","title":"Lead Id"},"file":{"type":"string","contentMediaType":"application/octet-stream","title":"File"}},"type":"object","required":["lead_id","file"],"title":"Body_scan_paystub_api_v1_screening_scan_paystub_post"},"Body_scan_receipt_api_v1_accounting_scan_receipt_post":{"properties":{"file":{"type":"string","contentMediaType":"application/octet-stream","title":"File"}},"type":"object","required":["file"],"title":"Body_scan_receipt_api_v1_accounting_scan_receipt_post"},"Body_send_verification_code_api_v1_auth_send_verification_code_post":{"properties":{"phone":{"type":"string","title":"Phone"},"email":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Email"},"delivery_method":{"type":"string","title":"Delivery Method","default":"auto"}},"type":"object","required":["phone"],"title":"Body_send_verification_code_api_v1_auth_send_verification_code_post"},"Body_step_up_2fa_verify_api_v1_auth_step_up_2fa_verify_post":{"properties":{"code":{"type":"string","title":"Code"}},"type":"object","required":["code"],"title":"Body_step_up_2fa_verify_api_v1_auth_step_up_2fa_verify_post"},"Body_submit_article_callback_api_v1_article_callback_post":{"properties":{"phone":{"type":"string","title":"Phone"},"name":{"type":"string","title":"Name","default":""},"slug":{"type":"string","title":"Slug","default":""},"company":{"type":"string","title":"Company","default":""},"cf_turnstile_token":{"type":"string","title":"Cf Turnstile Token","default":""}},"type":"object","required":["phone"],"title":"Body_submit_article_callback_api_v1_article_callback_post"},"Body_submit_contact_form_api_v1_contact_post":{"properties":{"name":{"type":"string","title":"Name"},"email":{"type":"string","title":"Email"},"message":{"type":"string","title":"Message"},"subject":{"type":"string","title":"Subject","default":""},"phone":{"type":"string","title":"Phone","default":""},"company":{"type":"string","title":"Company","default":""},"cf_turnstile_token":{"type":"string","title":"Cf Turnstile Token","default":""}},"type":"object","required":["name","email","message"],"title":"Body_submit_contact_form_api_v1_contact_post"},"Body_submit_fair_housing_report_api_v1_public_fair_housing_report_post":{"properties":{"listing_url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Listing Url"},"description":{"type":"string","title":"Description"},"reporter_email":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Reporter Email"}},"type":"object","required":["description"],"title":"Body_submit_fair_housing_report_api_v1_public_fair_housing_report_post"},"Body_submit_maintenance_request_api_v1_properties_maintenance_request_post":{"properties":{"title":{"type":"string","title":"Title"},"category":{"type":"string","title":"Category"},"description":{"type":"string","title":"Description"},"priority":{"type":"string","title":"Priority"},"permission_to_enter":{"type":"boolean","title":"Permission To Enter","default":false},"entry_basis":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Entry Basis"},"entry_basis_detail":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Entry Basis Detail"},"unit_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Unit Id"},"tenant_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Tenant Id"}},"type":"object","required":["title","category","description","priority"],"title":"Body_submit_maintenance_request_api_v1_properties_maintenance_request_post"},"Body_submit_secure_upload_api_v1_public_upload__token__post":{"properties":{"file":{"type":"string","contentMediaType":"application/octet-stream","title":"File"}},"type":"object","required":["file"],"title":"Body_submit_secure_upload_api_v1_public_upload__token__post"},"Body_submit_tenant_move_in_condition_api_v1_inspections_tenant_move_in_post":{"properties":{"lease_id":{"type":"string","title":"Lease Id"},"area":{"type":"string","title":"Area"},"issue_detected":{"type":"string","title":"Issue Detected"},"photo":{"type":"string","contentMediaType":"application/octet-stream","title":"Photo"}},"type":"object","required":["lease_id","area","issue_detected"],"title":"Body_submit_tenant_move_in_condition_api_v1_inspections_tenant_move_in_post"},"Body_tenant_vault_upload_api_v1_tenant_vault_upload_post":{"properties":{"file":{"type":"string","contentMediaType":"application/octet-stream","title":"File"},"category":{"type":"string","title":"Category","default":"uncategorized"}},"type":"object","required":["file"],"title":"Body_tenant_vault_upload_api_v1_tenant_vault_upload_post"},"Body_triage_maintenance_photo_api_v1_intelligence_triage_maintenance_photo_post":{"properties":{"photo":{"type":"string","contentMediaType":"application/octet-stream","title":"Photo"},"note":{"type":"string","title":"Note","default":""}},"type":"object","required":["photo"],"title":"Body_triage_maintenance_photo_api_v1_intelligence_triage_maintenance_photo_post"},"Body_triage_photo_api_v1_maintenance_ai_triage_photo_post":{"properties":{"photo":{"type":"string","contentMediaType":"application/octet-stream","title":"Photo"},"text":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Text"},"voice_transcript":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Voice Transcript"},"zip_code":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Zip Code"}},"type":"object","required":["photo"],"title":"Body_triage_photo_api_v1_maintenance_ai_triage_photo_post"},"Body_unsubscribe_confirm_unsubscribe_post":{"properties":{"email":{"type":"string","title":"Email"},"token":{"type":"string","title":"Token"}},"type":"object","required":["email","token"],"title":"Body_unsubscribe_confirm_unsubscribe_post"},"Body_unsubscribe_preferences_unsubscribe_preferences_post":{"properties":{"email":{"type":"string","title":"Email"},"token":{"type":"string","title":"Token"},"marketing":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Marketing"},"product":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Product"},"digest":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Digest"}},"type":"object","required":["email","token"],"title":"Body_unsubscribe_preferences_unsubscribe_preferences_post"},"Body_upload_application_document_api_v1_leads__lead_id__documents_post":{"properties":{"email":{"type":"string","title":"Email"},"category":{"type":"string","title":"Category","default":"other"},"note":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Note"},"file":{"type":"string","contentMediaType":"application/octet-stream","title":"File"}},"type":"object","required":["email","file"],"title":"Body_upload_application_document_api_v1_leads__lead_id__documents_post"},"Body_upload_attachment_api_v1_messages_upload_post":{"properties":{"file":{"type":"string","contentMediaType":"application/octet-stream","title":"File"}},"type":"object","required":["file"],"title":"Body_upload_attachment_api_v1_messages_upload_post"},"Body_upload_branding_logo_api_v1_branding_logo_post":{"properties":{"file":{"type":"string","contentMediaType":"application/octet-stream","title":"File"}},"type":"object","required":["file"],"title":"Body_upload_branding_logo_api_v1_branding_logo_post"},"Body_upload_compliance_docs_api_v1_move_in_upload_compliance_post":{"properties":{"insurance_proof":{"type":"string","contentMediaType":"application/octet-stream","title":"Insurance Proof"},"utility_proof":{"type":"string","contentMediaType":"application/octet-stream","title":"Utility Proof"},"baseline_photo_1":{"type":"string","contentMediaType":"application/octet-stream","title":"Baseline Photo 1"}},"type":"object","title":"Body_upload_compliance_docs_api_v1_move_in_upload_compliance_post"},"Body_upload_document_version_api_v1_landlord_vault_version__document_id__post":{"properties":{"file":{"type":"string","contentMediaType":"application/octet-stream","title":"File"}},"type":"object","required":["file"],"title":"Body_upload_document_version_api_v1_landlord_vault_version__document_id__post"},"Body_upload_ownership_document_api_v1_properties__property_id__verify_deed_post":{"properties":{"files":{"items":{"type":"string","contentMediaType":"application/octet-stream"},"type":"array","title":"Files"}},"type":"object","required":["files"],"title":"Body_upload_ownership_document_api_v1_properties__property_id__verify_deed_post"},"Body_upload_profile_picture_api_v1_auth_profile_image_post":{"properties":{"file":{"type":"string","contentMediaType":"application/octet-stream","title":"File"}},"type":"object","required":["file"],"title":"Body_upload_profile_picture_api_v1_auth_profile_image_post"},"Body_upload_property_photos_api_v1_properties__property_id__photos_post":{"properties":{"files":{"items":{"type":"string","contentMediaType":"application/octet-stream"},"type":"array","title":"Files"},"cover_index":{"type":"integer","title":"Cover Index","default":0},"ai_choose_cover":{"type":"string","title":"Ai Choose Cover","default":"false"}},"type":"object","required":["files"],"title":"Body_upload_property_photos_api_v1_properties__property_id__photos_post"},"Body_upload_third_party_policy_api_v1_insurance_upload_external_post":{"properties":{"tenant_id":{"type":"string","title":"Tenant Id"},"unit_id":{"type":"string","title":"Unit Id"},"document":{"type":"string","contentMediaType":"application/octet-stream","title":"Document"}},"type":"object","required":["tenant_id","unit_id","document"],"title":"Body_upload_third_party_policy_api_v1_insurance_upload_external_post"},"Body_upload_ticket_invoice_api_v1_maintenance_tickets__ticket_id__invoice_post":{"properties":{"invoice_file":{"type":"string","contentMediaType":"application/octet-stream","title":"Invoice File"},"confirmed_total":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Confirmed Total"}},"type":"object","required":["invoice_file"],"title":"Body_upload_ticket_invoice_api_v1_maintenance_tickets__ticket_id__invoice_post"},"Body_upload_vault_document_api_v1_landlord_vault_upload_post":{"properties":{"file":{"type":"string","contentMediaType":"application/octet-stream","title":"File"},"category":{"type":"string","title":"Category","default":"uncategorized"},"folder_name":{"type":"string","title":"Folder Name"},"property_id":{"type":"string","title":"Property Id"},"tenant_id":{"type":"string","title":"Tenant Id"}},"type":"object","required":["file"],"title":"Body_upload_vault_document_api_v1_landlord_vault_upload_post"},"Body_upload_verification_doc_api_v1_accommodation_requests__request_id__verification_post":{"properties":{"verification_doc":{"type":"string","contentMediaType":"application/octet-stream","title":"Verification Doc"}},"type":"object","required":["verification_doc"],"title":"Body_upload_verification_doc_api_v1_accommodation_requests__request_id__verification_post"},"Body_vendor_listing_photo_upload_api_v1_vendor_directory_listing_photo_post":{"properties":{"file":{"type":"string","contentMediaType":"application/octet-stream","title":"File"}},"type":"object","required":["file"],"title":"Body_vendor_listing_photo_upload_api_v1_vendor_directory_listing_photo_post"},"Body_vendor_upload_insurance_api_v1_vendors__vendor_id__upload_insurance_post":{"properties":{"expiration_date":{"type":"string","title":"Expiration Date"},"license_number":{"type":"string","title":"License Number"},"file":{"type":"string","contentMediaType":"application/octet-stream","title":"File"}},"type":"object","required":["expiration_date","file"],"title":"Body_vendor_upload_insurance_api_v1_vendors__vendor_id__upload_insurance_post"},"Body_vendor_upload_w9_api_v1_vendors__vendor_id__upload_w9_post":{"properties":{"file":{"type":"string","contentMediaType":"application/octet-stream","title":"File"}},"type":"object","required":["file"],"title":"Body_vendor_upload_w9_api_v1_vendors__vendor_id__upload_w9_post"},"Body_verify_2fa_login_api_v1_auth_login_verify_2fa_post":{"properties":{"email":{"type":"string","title":"Email"},"code":{"type":"string","title":"Code"},"next_url":{"type":"string","title":"Next Url"},"remember_me":{"type":"string","title":"Remember Me","default":"0"}},"type":"object","required":["email","code"],"title":"Body_verify_2fa_login_api_v1_auth_login_verify_2fa_post"},"Body_verify_code_only_api_v1_auth_verify_code_only_post":{"properties":{"phone":{"type":"string","title":"Phone"},"code":{"type":"string","title":"Code"}},"type":"object","required":["phone","code"],"title":"Body_verify_code_only_api_v1_auth_verify_code_only_post"},"Body_verify_phone_api_v1_auth_verify_phone_post":{"properties":{"phone":{"type":"string","title":"Phone"},"code":{"type":"string","title":"Code"}},"type":"object","required":["phone","code"],"title":"Body_verify_phone_api_v1_auth_verify_phone_post"},"Body_voice_action_items_api_v1_ai_voice_action_items_post":{"properties":{"audio":{"type":"string","contentMediaType":"application/octet-stream","title":"Audio"},"context_hint":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Context Hint"}},"type":"object","required":["audio"],"title":"Body_voice_action_items_api_v1_ai_voice_action_items_post"},"Body_voice_transcribe_api_v1_ai_voice_transcribe_post":{"properties":{"audio":{"type":"string","contentMediaType":"application/octet-stream","title":"Audio"},"context_hint":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Context Hint"}},"type":"object","required":["audio"],"title":"Body_voice_transcribe_api_v1_ai_voice_transcribe_post"},"BroadcastCreate":{"properties":{"receiver_id":{"type":"string","title":"Receiver Id"},"content":{"type":"string","title":"Content"},"in_app":{"type":"boolean","title":"In App","default":true},"email":{"type":"boolean","title":"Email","default":false},"sms":{"type":"boolean","title":"Sms","default":false}},"type":"object","required":["receiver_id","content"],"title":"BroadcastCreate"},"BulkDeleteRequest":{"properties":{"document_ids":{"items":{"type":"string"},"type":"array","title":"Document Ids"}},"type":"object","required":["document_ids"],"title":"BulkDeleteRequest"},"BulkFolderRequest":{"properties":{"document_ids":{"items":{"type":"string"},"type":"array","title":"Document Ids"},"folder_name":{"type":"string","title":"Folder Name"}},"type":"object","required":["document_ids","folder_name"],"title":"BulkFolderRequest"},"BulkPersonalizeRequest":{"properties":{"template_text":{"type":"string","title":"Template Text"},"tenant_ids":{"items":{"type":"string"},"type":"array","title":"Tenant Ids"}},"type":"object","required":["template_text","tenant_ids"],"title":"BulkPersonalizeRequest"},"BulkPropertyIdsPayload":{"properties":{"property_ids":{"items":{"type":"string"},"type":"array","title":"Property Ids"}},"type":"object","required":["property_ids"],"title":"BulkPropertyIdsPayload"},"BulkRemindItem":{"properties":{"tenant_id":{"type":"string","title":"Tenant Id"},"amount_due":{"type":"number","title":"Amount Due"}},"type":"object","required":["tenant_id","amount_due"],"title":"BulkRemindItem"},"BulkRemindRequest":{"properties":{"items":{"items":{"$ref":"#/components/schemas/BulkRemindItem"},"type":"array","title":"Items"}},"type":"object","required":["items"],"title":"BulkRemindRequest"},"BulkShareRequest":{"properties":{"document_ids":{"items":{"type":"string"},"type":"array","title":"Document Ids"},"share_with_email":{"type":"string","title":"Share With Email"}},"type":"object","required":["document_ids","share_with_email"],"title":"BulkShareRequest"},"CadenceRequest":{"properties":{"tenant_id":{"type":"string","title":"Tenant Id"}},"type":"object","required":["tenant_id"],"title":"CadenceRequest"},"CalendarEventCreate":{"properties":{"title":{"type":"string","title":"Title"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"event_type":{"type":"string","title":"Event Type"},"category":{"type":"string","title":"Category","default":"personal"},"start_at":{"type":"string","format":"date-time","title":"Start At"},"end_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"End At"},"all_day":{"type":"boolean","title":"All Day","default":false},"property_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Property Id"},"unit_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Unit Id"},"recurrence_rule":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Recurrence Rule"},"reminder_minutes":{"items":{"type":"integer"},"type":"array","title":"Reminder Minutes"},"location":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Location"},"attendee_info":{"additionalProperties":true,"type":"object","title":"Attendee Info"},"color":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color"}},"type":"object","required":["title","event_type","start_at"],"title":"CalendarEventCreate"},"CalendarEventUpdate":{"properties":{"title":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Title"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"event_type":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Event Type"},"category":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Category"},"start_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Start At"},"end_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"End At"},"all_day":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"All Day"},"property_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Property Id"},"unit_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Unit Id"},"recurrence_rule":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Recurrence Rule"},"reminder_minutes":{"anyOf":[{"items":{"type":"integer"},"type":"array"},{"type":"null"}],"title":"Reminder Minutes"},"location":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Location"},"attendee_info":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Attendee Info"},"color":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color"},"status":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Status"}},"type":"object","title":"CalendarEventUpdate"},"CancelPendingPayload":{"properties":{"cancel_reason":{"type":"string","maxLength":500,"title":"Cancel Reason","default":""}},"type":"object","title":"CancelPendingPayload"},"ChartOfAccountCreate":{"properties":{"property_id":{"type":"integer","title":"Property Id"},"account_name":{"type":"string","maxLength":200,"minLength":1,"title":"Account Name"},"account_type":{"type":"string","maxLength":80,"minLength":1,"title":"Account Type"},"irs_schedule_e_category":{"anyOf":[{"type":"string","maxLength":120},{"type":"null"}],"title":"Irs Schedule E Category"}},"type":"object","required":["property_id","account_name","account_type"],"title":"ChartOfAccountCreate"},"ChartThemeUpdate":{"properties":{"theme":{"type":"string","title":"Theme"}},"type":"object","required":["theme"],"title":"ChartThemeUpdate"},"ChatMessage":{"properties":{"role":{"type":"string","title":"Role"},"content":{"type":"string","title":"Content"}},"type":"object","required":["role","content"],"title":"ChatMessage"},"CheckEmailRequest":{"properties":{"email":{"type":"string","format":"email","title":"Email"}},"type":"object","required":["email"],"title":"CheckEmailRequest"},"CheckoutPayload":{"properties":{"billing_cycle":{"type":"string","title":"Billing Cycle","default":"monthly"},"coupon_code":{"type":"string","title":"Coupon Code"},"units":{"type":"integer","title":"Units","default":1}},"type":"object","title":"CheckoutPayload"},"CheckoutRequest":{"properties":{"email":{"type":"string","title":"Email"},"amount_cents":{"type":"integer","title":"Amount Cents"}},"type":"object","required":["email","amount_cents"],"title":"CheckoutRequest"},"ClauseTranslateRequest":{"properties":{"clause_text":{"type":"string","title":"Clause Text"},"audience":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Audience","default":"tenant"}},"type":"object","required":["clause_text"],"title":"ClauseTranslateRequest"},"CompletenessRequest":{"properties":{"application_payload":{"additionalProperties":true,"type":"object","title":"Application Payload"},"require_cosigner":{"type":"boolean","title":"Require Cosigner","default":false}},"type":"object","required":["application_payload"],"title":"CompletenessRequest"},"ConditionalOfferRequest":{"properties":{"lead_id":{"type":"string","minLength":1,"title":"Lead Id"},"property_address":{"anyOf":[{"type":"string","maxLength":400},{"type":"null"}],"title":"Property Address"}},"type":"object","required":["lead_id"],"title":"ConditionalOfferRequest"},"ConnectRequest":{"properties":{"message":{"anyOf":[{"type":"string","maxLength":2000},{"type":"null"}],"title":"Message"}},"type":"object","title":"ConnectRequest"},"ConnectRespond":{"properties":{"decision":{"type":"string","title":"Decision","description":"accepted | declined"},"response_message":{"anyOf":[{"type":"string","maxLength":2000},{"type":"null"}],"title":"Response Message"}},"type":"object","required":["decision"],"title":"ConnectRespond"},"ContractorRequest":{"properties":{"issue":{"type":"string","title":"Issue"},"area":{"type":"string","title":"Area"}},"type":"object","required":["issue","area"],"title":"ContractorRequest"},"CookiePreferencesPayload":{"properties":{"perf_enabled":{"type":"boolean","title":"Perf Enabled","default":true},"ads_enabled":{"type":"boolean","title":"Ads Enabled","default":false},"decision":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Decision"}},"type":"object","title":"CookiePreferencesPayload"},"CopilotRequest":{"properties":{"message":{"type":"string","title":"Message"},"history":{"items":{"$ref":"#/components/schemas/ChatMessage"},"type":"array","title":"History","default":[]},"page_path":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Page Path"},"thread_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Thread Id"}},"type":"object","required":["message"],"title":"CopilotRequest"},"CopilotToggle":{"properties":{"enabled":{"type":"boolean","title":"Enabled"}},"type":"object","required":["enabled"],"title":"CopilotToggle"},"CounterOfferRequest":{"properties":{"applicant_summary":{"type":"string","title":"Applicant Summary"},"declined_unit_summary":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Declined Unit Summary"},"alternate_unit_summary":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Alternate Unit Summary"}},"type":"object","required":["applicant_summary"],"title":"CounterOfferRequest"},"CreateInspectionRequest":{"properties":{"unit_id":{"type":"string","title":"Unit Id"},"inspection_type":{"type":"string","title":"Inspection Type"},"tenant_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Tenant Id"}},"type":"object","required":["unit_id","inspection_type"],"title":"CreateInspectionRequest"},"CredentialViewPayload":{"properties":{"kind":{"type":"string","enum":["wifi_password_revealed","wifi_password_copied","wifi_qr_opened","door_pin_revealed","door_pin_copied"],"title":"Kind"}},"type":"object","required":["kind"],"title":"CredentialViewPayload"},"DamageItem":{"properties":{"description":{"type":"string","title":"Description"},"estimated_repair_cost":{"type":"number","title":"Estimated Repair Cost"}},"type":"object","required":["description","estimated_repair_cost"],"title":"DamageItem"},"DashboardActionPayload":{"properties":{"kind":{"type":"string","title":"Kind"},"ref_id":{"type":"string","title":"Ref Id"},"op":{"type":"string","title":"Op","default":"dismiss"}},"type":"object","required":["kind","ref_id"],"title":"DashboardActionPayload"},"DashboardLayoutUpdate":{"properties":{"layout":{"type":"string","title":"Layout"}},"type":"object","required":["layout"],"title":"DashboardLayoutUpdate"},"DeclinePayload":{"properties":{"decline_reason":{"type":"string","maxLength":1000,"title":"Decline Reason","default":""},"signing_token":{"anyOf":[{"type":"string","maxLength":128},{"type":"null"}],"title":"Signing Token"}},"type":"object","title":"DeclinePayload"},"DeleteApplicationDocPayload":{"properties":{"email":{"type":"string","format":"email","title":"Email"}},"type":"object","required":["email"],"title":"DeleteApplicationDocPayload"},"DemoScoreRequest":{"properties":{"applicant_name":{"type":"string","maxLength":80,"minLength":1,"title":"Applicant Name"},"monthly_income":{"type":"integer","maximum":1000000.0,"minimum":0.0,"title":"Monthly Income"},"monthly_rent":{"type":"integer","maximum":100000.0,"minimum":1.0,"title":"Monthly Rent"},"credit_estimate":{"type":"integer","maximum":850.0,"minimum":300.0,"title":"Credit Estimate"}},"type":"object","required":["applicant_name","monthly_income","monthly_rent","credit_estimate"],"title":"DemoScoreRequest"},"DepositDisputePayload":{"properties":{"text":{"type":"string","maxLength":1500,"minLength":15,"title":"Text","description":"The tenant's written explanation of the disputed deduction(s)."},"inspection_item_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Inspection Item Id","description":"When set, dispute only this one walkthrough line item. When omitted, fall back to disputing every deductible line (blanket)."}},"type":"object","required":["text"],"title":"DepositDisputePayload"},"DescriptionRewritePayload":{"properties":{"beds":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Beds","default":0},"baths":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Baths","default":0.0},"sqft":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Sqft"},"amenities":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Amenities","default":[]},"pet_policy":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Pet Policy"},"laundry_type":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Laundry Type"},"parking_type":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Parking Type"},"current_description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Current Description"},"street_address":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Street Address"},"city":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"City"},"state":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"State"},"zip_code":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Zip Code"}},"type":"object","title":"DescriptionRewritePayload"},"DismissPayload":{"properties":{"landlord_response":{"type":"string","maxLength":2000,"minLength":4,"title":"Landlord Response"}},"type":"object","required":["landlord_response"],"title":"DismissPayload"},"DispatchPayload":{"properties":{"vendor_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Vendor Id"},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message"}},"type":"object","title":"DispatchPayload"},"DisputeAction":{"properties":{"action":{"type":"string","title":"Action"},"item_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Item Id"}},"type":"object","required":["action"],"title":"DisputeAction"},"DisputeEvidencePayload":{"properties":{"dispute_id":{"type":"string","title":"Dispute Id"},"uncategorized_text":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Uncategorized Text"},"customer_communication":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Customer Communication"},"receipt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Receipt"},"service_documentation":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Service Documentation"},"duplicate_charge_explanation":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Duplicate Charge Explanation"},"refund_policy":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Refund Policy"},"cancellation_policy":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Cancellation Policy"},"typed_confirmation":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Typed Confirmation"}},"type":"object","required":["dispute_id"],"title":"DisputeEvidencePayload"},"DocumentOut":{"properties":{"object":{"type":"string","title":"Object","default":"document"},"id":{"type":"string","title":"Id"},"title":{"type":"string","title":"Title"},"document_type":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Document Type"},"status":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Status"},"folder_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Folder Name"},"file_url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"File Url"},"property_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Property Id"},"unit_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Unit Id"},"tenant_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Tenant Id"},"lease_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Lease Id"},"vendor_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Vendor Id"},"expiration_date":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Expiration Date"},"created_at":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Created At"}},"type":"object","required":["id","title"],"title":"DocumentOut"},"DraftMessage":{"properties":{"headline":{"type":"string","title":"Headline"},"body":{"type":"string","title":"Body"}},"type":"object","required":["headline","body"],"title":"DraftMessage"},"DraftRequest":{"properties":{"invitee_first_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Invitee First Name"},"relationship":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Relationship"},"tone":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Tone","default":"friendly"}},"type":"object","title":"DraftRequest"},"DraftResponse":{"properties":{"drafts":{"items":{"$ref":"#/components/schemas/DraftMessage"},"type":"array","title":"Drafts"}},"type":"object","required":["drafts"],"title":"DraftResponse"},"DynamicPricingRequest":{"properties":{"unit_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Unit Id"},"beds":{"type":"integer","title":"Beds"},"baths":{"type":"number","title":"Baths"},"sqft":{"type":"integer","title":"Sqft"},"current_rent":{"type":"number","title":"Current Rent"},"neighborhood":{"type":"string","title":"Neighborhood"}},"type":"object","required":["beds","baths","sqft","current_rent","neighborhood"],"title":"DynamicPricingRequest"},"EmailPreferencesUpdate":{"properties":{"email_pref_tips":{"type":"boolean","title":"Email Pref Tips"},"email_pref_reminders":{"type":"boolean","title":"Email Pref Reminders"},"email_pref_notifications":{"type":"boolean","title":"Email Pref Notifications"},"email_pref_daily_digest":{"type":"boolean","title":"Email Pref Daily Digest"}},"type":"object","required":["email_pref_tips","email_pref_reminders","email_pref_notifications","email_pref_daily_digest"],"title":"EmailPreferencesUpdate"},"EmailUpdate":{"properties":{"email":{"type":"string","title":"Email"}},"type":"object","required":["email"],"title":"EmailUpdate"},"EmptyStateRequest":{"properties":{"page":{"type":"string","title":"Page"}},"type":"object","required":["page"],"title":"EmptyStateRequest"},"EntitySuggestionRequest":{"properties":{"business_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Business Name"},"state":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"State"},"num_properties_planned":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Num Properties Planned"},"notes":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Notes"}},"type":"object","title":"EntitySuggestionRequest"},"EscrowTransferRequest":{"properties":{"ledger_id":{"type":"string","maxLength":64,"minLength":1,"title":"Ledger Id"},"amount":{"type":"number","maximum":1000000.0,"exclusiveMinimum":0.0,"title":"Amount"}},"type":"object","required":["ledger_id","amount"],"title":"EscrowTransferRequest"},"EvictionReadinessRequest":{"properties":{"lease_id":{"type":"string","title":"Lease Id"}},"type":"object","required":["lease_id"],"title":"EvictionReadinessRequest"},"ExecuteRequest":{"properties":{"type":{"type":"string","title":"Type"},"params":{"additionalProperties":true,"type":"object","title":"Params","default":{}}},"type":"object","required":["type"],"title":"ExecuteRequest"},"FaqRequest":{"properties":{"tenant_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Tenant Id"},"question":{"type":"string","title":"Question"}},"type":"object","required":["question"],"title":"FaqRequest"},"FavoriteToggleRequest":{"properties":{"unit_id":{"type":"string","title":"Unit Id"}},"type":"object","required":["unit_id"],"title":"FavoriteToggleRequest"},"FcraDeclineRequest":{"properties":{"reasons":{"items":{"type":"string"},"type":"array","title":"Reasons","description":"Plain-English reasons noted on the application. Required so the FCRA notice is specific."},"credit_score":{"anyOf":[{"type":"integer","maximum":850.0,"minimum":300.0},{"type":"null"}],"title":"Credit Score","description":"Numerical credit score actually used in the decision. Required by 15 U.S.C. 1681m(a)(2)(A) when a score was used."},"credit_score_range":{"type":"string","title":"Credit Score Range","default":"300-850"},"credit_score_factors":{"items":{"type":"string"},"type":"array","title":"Credit Score Factors","description":"Up to five key factors that adversely affected the score."}},"type":"object","title":"FcraDeclineRequest"},"FcraDisclosureViewPayload":{"properties":{"lead_id":{"type":"string","minLength":1,"title":"Lead Id"},"kind":{"type":"string","enum":["disclosure","summary"],"title":"Kind"},"version":{"anyOf":[{"type":"string","maxLength":64},{"type":"null"}],"title":"Version"}},"type":"object","required":["lead_id","kind"],"title":"FcraDisclosureViewPayload"},"FeatureCreate":{"properties":{"title":{"type":"string","title":"Title"},"description":{"type":"string","title":"Description"}},"type":"object","required":["title","description"],"title":"FeatureCreate"},"FeatureMatchRequest":{"properties":{"title":{"type":"string","title":"Title"},"description":{"type":"string","title":"Description","default":""}},"type":"object","required":["title"],"title":"FeatureMatchRequest"},"FeedbackCreate":{"properties":{"feedback_type":{"type":"string","pattern":"^(idea|bug)$","title":"Feedback Type"},"title":{"type":"string","maxLength":200,"minLength":2,"title":"Title"},"description":{"type":"string","maxLength":8000,"minLength":2,"title":"Description"},"severity":{"anyOf":[{"type":"string","pattern":"^(blocker|serious|minor)$"},{"type":"null"}],"title":"Severity"},"page_url":{"anyOf":[{"type":"string","maxLength":500},{"type":"null"}],"title":"Page Url"},"user_agent":{"anyOf":[{"type":"string","maxLength":500},{"type":"null"}],"title":"User Agent"}},"type":"object","required":["feedback_type","title","description"],"title":"FeedbackCreate"},"FeedbackRecordRequest":{"properties":{"feature_id":{"type":"string","title":"Feature Id"},"verdict":{"type":"string","title":"Verdict"},"proposal_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Proposal Id"},"prompt_hash":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Prompt Hash"},"entity_type":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Entity Type"},"entity_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Entity Id"},"reason_code":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Reason Code"},"note":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Note"},"edit_distance":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Edit Distance"}},"type":"object","required":["feature_id","verdict"],"title":"FeedbackRecordRequest"},"FeedbackResponse":{"properties":{"id":{"type":"string","title":"Id"},"user_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"User Id"},"user_role":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"User Role"},"feedback_type":{"type":"string","title":"Feedback Type"},"title":{"type":"string","title":"Title"},"description":{"type":"string","title":"Description"},"severity":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Severity"},"page_url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Page Url"},"status":{"type":"string","title":"Status"},"admin_notes":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Admin Notes"},"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"resolved_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Resolved At"}},"type":"object","required":["id","feedback_type","title","description","status"],"title":"FeedbackResponse"},"FeedbackStatusUpdate":{"properties":{"status":{"type":"string","pattern":"^(new|triaged|in_progress|resolved|wont_fix)$","title":"Status"},"admin_notes":{"anyOf":[{"type":"string","maxLength":4000},{"type":"null"}],"title":"Admin Notes"}},"type":"object","required":["status"],"title":"FeedbackStatusUpdate"},"FieldSignPayload":{"properties":{"signature_data":{"type":"string","maxLength":400000,"minLength":1,"title":"Signature Data"},"acknowledges_esign":{"type":"boolean","title":"Acknowledges Esign","default":false},"has_read_lease":{"type":"boolean","title":"Has Read Lease","default":false},"signing_token":{"anyOf":[{"type":"string","maxLength":128},{"type":"null"}],"title":"Signing Token"}},"type":"object","required":["signature_data"],"title":"FieldSignPayload","description":"Per-anchor signature/initial submission."},"FinalizeRequest":{"properties":{"forwarding_address":{"anyOf":[{"type":"string","maxLength":400},{"type":"null"}],"title":"Forwarding Address"},"forwarding_email":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Forwarding Email"},"notes":{"anyOf":[{"type":"string","maxLength":2000},{"type":"null"}],"title":"Notes"}},"type":"object","title":"FinalizeRequest"},"FinanceQuestion":{"properties":{"question":{"type":"string","title":"Question"},"report_data":{"additionalProperties":true,"type":"object","title":"Report Data"}},"type":"object","required":["question","report_data"],"title":"FinanceQuestion"},"FlaggedClause":{"properties":{"title":{"type":"string","title":"Title"},"severity":{"type":"string","title":"Severity"},"explanation":{"type":"string","title":"Explanation"}},"type":"object","required":["title","severity","explanation"],"title":"FlaggedClause"},"FolderUpdateRequest":{"properties":{"folder_name":{"type":"string","title":"Folder Name"}},"type":"object","required":["folder_name"],"title":"FolderUpdateRequest"},"GenerateRequest":{"properties":{"answers":{"$ref":"#/components/schemas/WizardAnswers"}},"type":"object","required":["answers"],"title":"GenerateRequest"},"HTTPValidationError":{"properties":{"detail":{"items":{"$ref":"#/components/schemas/ValidationError"},"type":"array","title":"Detail"}},"type":"object","title":"HTTPValidationError"},"HVACTelemetryPayload":{"properties":{"unit_id":{"type":"string","title":"Unit Id"},"sensor_id":{"type":"string","title":"Sensor Id"},"current_temp":{"type":"number","title":"Current Temp"},"target_temp":{"type":"number","title":"Target Temp"},"runtime_minutes":{"type":"integer","title":"Runtime Minutes"},"outdoor_temp":{"type":"number","title":"Outdoor Temp"}},"type":"object","required":["unit_id","sensor_id","current_temp","target_temp","runtime_minutes","outdoor_temp"],"title":"HVACTelemetryPayload"},"HardshipRequest":{"properties":{"explanation_text":{"type":"string","title":"Explanation Text"}},"type":"object","required":["explanation_text"],"title":"HardshipRequest"},"HoldingFeeDispositionPayload":{"properties":{"lease_id":{"type":"string","title":"Lease Id"},"typed_confirmation":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Typed Confirmation"}},"type":"object","required":["lease_id"],"title":"HoldingFeeDispositionPayload"},"HoldingFeePayload":{"properties":{"lease_id":{"type":"string","title":"Lease Id"},"amount_dollars":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Amount Dollars"}},"type":"object","required":["lease_id"],"title":"HoldingFeePayload"},"InboxDraftRequest":{"properties":{"ticket_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Ticket Id"},"other_party_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Other Party Id"},"intent_hint":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Intent Hint"}},"type":"object","title":"InboxDraftRequest"},"IndividualizedAssessmentFactors":{"properties":{"nature_of_offense":{"type":"string","maxLength":2000,"title":"Nature Of Offense","description":"What the conviction was for; charge type and severity.","default":""},"time_since_offense":{"type":"string","maxLength":400,"title":"Time Since Offense","description":"How much time has elapsed; whether the conviction is stale enough to be irrelevant per state limits (CA/NY/HI cap at 7 years).","default":""},"evidence_of_rehabilitation":{"type":"string","maxLength":2000,"title":"Evidence Of Rehabilitation","description":"Letters of recommendation, treatment programs, sustained employment, etc.","default":""},"age_at_offense":{"type":"string","maxLength":400,"title":"Age At Offense","description":"Whether the applicant was a juvenile or young adult at the time.","default":""},"relationship_to_tenancy":{"type":"string","maxLength":2000,"title":"Relationship To Tenancy","description":"Whether the offense bears any rational relation to fitness as a tenant.","default":""},"other_mitigating_circumstances":{"type":"string","maxLength":2000,"title":"Other Mitigating Circumstances","default":""}},"type":"object","title":"IndividualizedAssessmentFactors","description":"Structured capture of the six HUD-recommended factors landlords are\nexpected to weigh when a criminal record turns up on a screening. Wrapped\nin its own model so the screening dashboard can render it as a form and\nthe audit log can store it verbatim."},"IndividualizedAssessmentRequest":{"properties":{"lead_id":{"type":"string","minLength":1,"title":"Lead Id"},"factors":{"$ref":"#/components/schemas/IndividualizedAssessmentFactors"},"decision":{"type":"string","enum":["proceed","decline","request_more_info"],"title":"Decision","description":"Final outcome of the assessment."},"decision_rationale":{"type":"string","maxLength":4000,"title":"Decision Rationale","default":""}},"type":"object","required":["lead_id","factors","decision"],"title":"IndividualizedAssessmentRequest"},"InitialsPayload":{"properties":{"initials_data":{"type":"string","maxLength":400000,"minLength":1,"title":"Initials Data"},"clause_keys":{"items":{"type":"string"},"type":"array","title":"Clause Keys","description":"Identifiers of the clauses being acknowledged (e.g. lead_paint, mold, smoke_alarm)."},"signing_token":{"anyOf":[{"type":"string","maxLength":128},{"type":"null"}],"title":"Signing Token"}},"type":"object","required":["initials_data"],"title":"InitialsPayload"},"InitiateTurnoverRequest":{"properties":{"unit_id":{"type":"string","title":"Unit Id"},"move_out_date":{"type":"string","title":"Move Out Date"}},"type":"object","required":["unit_id","move_out_date"],"title":"InitiateTurnoverRequest"},"InquiryPayload":{"properties":{"first_name":{"type":"string","maxLength":80,"minLength":1,"title":"First Name"},"last_name":{"type":"string","maxLength":80,"minLength":1,"title":"Last Name"},"email":{"type":"string","format":"email","title":"Email"},"phone":{"type":"string","maxLength":30,"minLength":7,"title":"Phone"},"message":{"anyOf":[{"type":"string","maxLength":2000},{"type":"null"}],"title":"Message","default":""},"fair_housing_acknowledged":{"type":"boolean","title":"Fair Housing Acknowledged","default":false},"company":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Company","default":""}},"type":"object","required":["first_name","last_name","email","phone"],"title":"InquiryPayload","description":"Zillow-style \"Contact property\" payload. Mirrors StartApplicationPayload\nbut adds a free-text message and drops the move_in_date (the prospect\nhasn't decided that yet at the inquiry stage, that's a conversation\nthe landlord can have over chat or surface on the apply form later)."},"InsuranceDashboardResponse":{"properties":{"has_active_policy":{"type":"boolean","title":"Has Active Policy"},"policy_details":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Policy Details"},"ai_summary":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Ai Summary"},"gap_detected":{"type":"boolean","title":"Gap Detected","default":false},"gap_start_date":{"anyOf":[{"type":"string","format":"date"},{"type":"null"}],"title":"Gap Start Date"},"lease_end_date":{"anyOf":[{"type":"string","format":"date"},{"type":"null"}],"title":"Lease End Date"},"days_uninsured":{"type":"integer","title":"Days Uninsured","default":0}},"type":"object","required":["has_active_policy"],"title":"InsuranceDashboardResponse"},"IntentToVacatePayload":{"properties":{"move_out_date":{"type":"string","format":"date","title":"Move Out Date","description":"The date the tenant intends to be out by."},"reason":{"type":"string","maxLength":80,"title":"Reason"},"forwarding_address":{"anyOf":[{"type":"string","maxLength":255},{"type":"null"}],"title":"Forwarding Address"},"notes":{"anyOf":[{"type":"string","maxLength":1000},{"type":"null"}],"title":"Notes"}},"type":"object","required":["move_out_date","reason"],"title":"IntentToVacatePayload"},"InvestorReportRequest":{"properties":{"property_id":{"type":"string","title":"Property Id"},"year":{"type":"integer","title":"Year"},"month":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Month"}},"type":"object","required":["property_id","year"],"title":"InvestorReportRequest"},"InviteCreate":{"properties":{"listing_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Listing Id"},"message":{"anyOf":[{"type":"string","maxLength":2000},{"type":"null"}],"title":"Message"},"expires_in_days":{"type":"integer","maximum":60.0,"minimum":1.0,"title":"Expires In Days","default":14}},"type":"object","title":"InviteCreate"},"InviteExistingTenantRequest":{"properties":{"first_name":{"type":"string","title":"First Name"},"last_name":{"type":"string","title":"Last Name"},"email":{"type":"string","title":"Email"},"phone":{"type":"string","title":"Phone"},"unit_id":{"type":"string","title":"Unit Id"},"start_date":{"type":"string","format":"date","title":"Start Date"},"end_date":{"type":"string","format":"date","title":"End Date"},"monthly_rent":{"type":"number","title":"Monthly Rent"},"security_deposit":{"type":"number","title":"Security Deposit"}},"type":"object","required":["first_name","last_name","email","phone","unit_id","start_date","end_date","monthly_rent","security_deposit"],"title":"InviteExistingTenantRequest"},"InviteRespond":{"properties":{"decision":{"type":"string","title":"Decision","description":"accepted | declined"},"response_message":{"anyOf":[{"type":"string","maxLength":2000},{"type":"null"}],"title":"Response Message"}},"type":"object","required":["decision"],"title":"InviteRespond"},"InviteResponse":{"properties":{"ok":{"type":"boolean","title":"Ok"},"referral":{"additionalProperties":true,"type":"object","title":"Referral"},"message":{"type":"string","title":"Message"}},"type":"object","required":["ok","referral","message"],"title":"InviteResponse"},"ItemizedDeduction":{"properties":{"description":{"type":"string","title":"Description"},"amount":{"type":"number","title":"Amount"}},"type":"object","required":["description","amount"],"title":"ItemizedDeduction"},"JobCompletionRequest":{"properties":{"amount":{"type":"number","title":"Amount"}},"type":"object","required":["amount"],"title":"JobCompletionRequest"},"KeyTerm":{"properties":{"label":{"type":"string","title":"Label"},"value":{"type":"string","title":"Value"}},"type":"object","required":["label","value"],"title":"KeyTerm"},"LandlordInfo":{"properties":{"legal_name":{"type":"string","title":"Legal Name","default":"Landlord Entity"},"address":{"type":"string","title":"Address","default":"Address"},"contact_email":{"type":"string","title":"Contact Email","default":"email@example.com"},"contact_phone":{"type":"string","title":"Contact Phone","default":"555-555-5555"},"email":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Email"},"logo_url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Logo Url"},"registration_number":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Registration Number"},"agent_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Agent Name"},"agent_role":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Agent Role"},"agent_email":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Agent Email"}},"type":"object","title":"LandlordInfo"},"LandlordSettingsUpdate":{"properties":{"auto_send_renewal_reminders":{"type":"boolean","title":"Auto Send Renewal Reminders"},"auto_send_late_rent_warnings":{"type":"boolean","title":"Auto Send Late Rent Warnings"},"auto_send_renewal_offers":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Auto Send Renewal Offers","default":false},"auto_renewal_rent_increase_pct":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Auto Renewal Rent Increase Pct","default":0.0}},"type":"object","required":["auto_send_renewal_reminders","auto_send_late_rent_warnings"],"title":"LandlordSettingsUpdate"},"LandlordSignoffRequest":{"properties":{"rating":{"type":"integer","title":"Rating"},"feedback":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Feedback"}},"type":"object","required":["rating"],"title":"LandlordSignoffRequest"},"LanguagePreference":{"properties":{"language_code":{"type":"string","title":"Language Code"}},"type":"object","required":["language_code"],"title":"LanguagePreference"},"LanguageUpdate":{"properties":{"preferred_language":{"type":"string","title":"Preferred Language"}},"type":"object","required":["preferred_language"],"title":"LanguageUpdate"},"LeadFirstReplyRequest":{"properties":{"inquiry_text":{"type":"string","title":"Inquiry Text"},"property_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Property Id"},"tone_hint":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Tone Hint"}},"type":"object","required":["inquiry_text"],"title":"LeadFirstReplyRequest"},"LeadQualifyRequest":{"properties":{"inquiry_text":{"type":"string","title":"Inquiry Text"},"property_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Property Id"},"expected_rent":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Expected Rent"}},"type":"object","required":["inquiry_text"],"title":"LeadQualifyRequest"},"LeaseChangeRequestPayload":{"properties":{"request_type":{"type":"string","title":"Request Type","description":"One of roommate_add, roommate_remove, sublet, modification"},"prospective_first_name":{"anyOf":[{"type":"string","maxLength":80},{"type":"null"}],"title":"Prospective First Name"},"prospective_last_name":{"anyOf":[{"type":"string","maxLength":80},{"type":"null"}],"title":"Prospective Last Name"},"prospective_email":{"anyOf":[{"type":"string","format":"email"},{"type":"null"}],"title":"Prospective Email"},"prospective_phone":{"anyOf":[{"type":"string","maxLength":40},{"type":"null"}],"title":"Prospective Phone"},"prospective_relationship":{"anyOf":[{"type":"string","maxLength":80},{"type":"null"}],"title":"Prospective Relationship"},"prospective_employment":{"anyOf":[{"type":"string","maxLength":240},{"type":"null"}],"title":"Prospective Employment"},"existing_roommate_name":{"anyOf":[{"type":"string","maxLength":160},{"type":"null"}],"title":"Existing Roommate Name"},"effective_date":{"anyOf":[{"type":"string","format":"date"},{"type":"null"}],"title":"Effective Date"},"sublet_start":{"anyOf":[{"type":"string","format":"date"},{"type":"null"}],"title":"Sublet Start"},"sublet_end":{"anyOf":[{"type":"string","format":"date"},{"type":"null"}],"title":"Sublet End"},"reason":{"anyOf":[{"type":"string","maxLength":500},{"type":"null"}],"title":"Reason"},"change_summary":{"anyOf":[{"type":"string","maxLength":1500},{"type":"null"}],"title":"Change Summary"},"proposed_terms":{"anyOf":[{"type":"string","maxLength":1500},{"type":"null"}],"title":"Proposed Terms"}},"type":"object","required":["request_type"],"title":"LeaseChangeRequestPayload"},"LeaseClauseRequest":{"properties":{"state":{"anyOf":[{"type":"string","maxLength":4},{"type":"null"}],"title":"State","default":""},"monthly_rent":{"type":"number","maximum":200000.0,"minimum":0.0,"title":"Monthly Rent","default":0.0},"annual_income":{"type":"number","maximum":10000000.0,"minimum":0.0,"title":"Annual Income","default":0.0},"move_in_day":{"type":"integer","maximum":31.0,"minimum":1.0,"title":"Move In Day","default":1},"days_in_month":{"type":"integer","maximum":31.0,"minimum":28.0,"title":"Days In Month","default":30},"grace_period_days":{"type":"integer","maximum":60.0,"minimum":0.0,"title":"Grace Period Days","default":5},"daily_late_fee":{"type":"number","maximum":10000.0,"minimum":0.0,"title":"Daily Late Fee","default":0.0}},"type":"object","title":"LeaseClauseRequest"},"LeaseOut":{"properties":{"object":{"type":"string","title":"Object","default":"lease"},"id":{"type":"string","title":"Id"},"unit_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Unit Id"},"tenant_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Tenant Id"},"start_date":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Start Date"},"end_date":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"End Date"},"monthly_rent":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Monthly Rent"},"security_deposit":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Security Deposit"},"status":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Status"}},"type":"object","required":["id"],"title":"LeaseOut"},"LeaseRenewalPayload":{"properties":{"old_lease_id":{"type":"string","title":"Old Lease Id"},"new_start_date":{"type":"string","title":"New Start Date"},"new_end_date":{"type":"string","title":"New End Date"},"new_monthly_rent":{"type":"number","title":"New Monthly Rent"},"new_security_deposit":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"New Security Deposit"},"typed_confirmation":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Typed Confirmation"}},"type":"object","required":["old_lease_id","new_start_date","new_end_date","new_monthly_rent"],"title":"LeaseRenewalPayload"},"LeaseTerminationPayload":{"properties":{"lease_id":{"type":"string","title":"Lease Id"},"move_out_date":{"type":"string","title":"Move Out Date"},"early_termination_fee":{"type":"number","title":"Early Termination Fee","default":0.0},"typed_confirmation":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Typed Confirmation"}},"type":"object","required":["lease_id","move_out_date"],"title":"LeaseTerminationPayload"},"LeaseTerms":{"properties":{"deposit_holder_bank":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Deposit Holder Bank"},"deposit_holder_account":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Deposit Holder Account"},"rrio_certificate_number":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Rrio Certificate Number"},"witness_1_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Witness 1 Name"},"witness_2_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Witness 2 Name"},"notary_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Notary Name"},"notary_commission_expires":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Notary Commission Expires"},"start_date":{"anyOf":[{"type":"string","format":"date"},{"type":"string"}],"title":"Start Date","default":"2024-01-01"},"end_date":{"anyOf":[{"type":"string","format":"date"},{"type":"string"}],"title":"End Date","default":"2024-12-31"},"monthly_rent":{"type":"number","title":"Monthly Rent","default":0.0},"rent_due_day":{"type":"string","title":"Rent Due Day","default":"1st"},"payment_instructions":{"type":"string","title":"Payment Instructions","default":"Via Tenant Portal"},"security_deposit":{"type":"number","title":"Security Deposit","default":0.0},"days_to_return_deposit":{"type":"integer","title":"Days To Return Deposit","default":30},"converts_to_month_to_month":{"type":"boolean","title":"Converts To Month To Month","default":true},"late_fee_amount":{"type":"number","title":"Late Fee Amount","default":0.0},"late_fee_days_grace":{"anyOf":[{"type":"integer"},{"type":"string"}],"title":"Late Fee Days Grace","default":"5th"},"late_fee_type":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Late Fee Type","default":"month"},"carpet_cleaning_amount":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Carpet Cleaning Amount"},"maintenance_exceptions":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Maintenance Exceptions","default":"None. The Premises is accepted in its current condition."},"insurance_amount":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Insurance Amount","default":100000.0},"holdover_notice_days":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Holdover Notice Days","default":60},"notice_to_enter_hours":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Notice To Enter Hours","default":24},"m2m_termination_days":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"M2M Termination Days","default":30},"abandoned_property_storage_days":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Abandoned Property Storage Days","default":30},"auto_renews":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Auto Renews","default":false},"auto_renewal_notice_days":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Auto Renewal Notice Days","default":30},"allows_subletting":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Allows Subletting","default":false},"requires_renters_insurance":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Requires Renters Insurance","default":false},"offers_rent_reporting":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Offers Rent Reporting","default":false},"provides_fridge_and_stove":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Provides Fridge And Stove","default":true},"deposit_paid_electronically":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Deposit Paid Electronically","default":true},"agrees_to_electronic_notices":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Agrees To Electronic Notices","default":false},"negotiated_language":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Negotiated Language","default":"English"},"provided_translated_lease":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Provided Translated Lease","default":true},"accepts_section_8":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Accepts Section 8","default":true},"max_guest_stay_days":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Max Guest Stay Days","default":14},"uses_rubs_billing":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Uses Rubs Billing","default":false},"rubs_admin_fee":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Rubs Admin Fee","default":0.0},"lease_term_months":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Lease Term Months","default":12},"has_smart_home_tech":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Has Smart Home Tech","default":false},"provides_air_conditioning":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Provides Air Conditioning","default":false},"will_be_recorded_with_county":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Will Be Recorded With County","default":false},"has_bulk_internet_fee":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Has Bulk Internet Fee","default":false},"bulk_internet_fee_amount":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Bulk Internet Fee Amount","default":0.0},"has_waterbed":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Has Waterbed","default":false},"waterbed_insurance_amount":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Waterbed Insurance Amount","default":100000.0},"dv_termination_fee_amount":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Dv Termination Fee Amount","default":0.0},"is_prorated":{"type":"boolean","title":"Is Prorated","default":false},"proration_start_date":{"anyOf":[{"type":"string","format":"date"},{"type":"null"}],"title":"Proration Start Date"},"prorated_rent":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Prorated Rent","default":0.0},"charge_nsf_fee":{"type":"boolean","title":"Charge Nsf Fee","default":false},"bounce_fee_amount":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Bounce Fee Amount","default":35.0},"parking_provided":{"type":"boolean","title":"Parking Provided","default":false},"parking_spaces":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Parking Spaces"},"charge_parking_fee":{"type":"boolean","title":"Charge Parking Fee","default":false},"parking_fee_amount":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Parking Fee Amount","default":0.0},"parking_fee_is_recurring":{"type":"boolean","title":"Parking Fee Is Recurring","default":false},"pets_allowed":{"type":"boolean","title":"Pets Allowed","default":false},"permitted_pet_types":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Permitted Pet Types"},"number_of_pets":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Number Of Pets"},"pet_deposit":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Pet Deposit","default":0.0},"pet_fee_amount":{"type":"number","title":"Pet Fee Amount","default":0.0},"has_non_refundable_pet_fee":{"type":"boolean","title":"Has Non Refundable Pet Fee","default":false},"is_assistance_animal":{"type":"boolean","title":"Is Assistance Animal","default":false},"pet_rent":{"type":"number","title":"Pet Rent","default":0.0},"smoking_allowed":{"type":"boolean","title":"Smoking Allowed","default":false},"permitted_smoking_areas":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Permitted Smoking Areas"},"landlord_utilities":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Landlord Utilities"},"utilities_policy":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Utilities Policy"},"insurance_policy":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Insurance Policy"},"subletting_policy":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Subletting Policy"},"move_in_fee":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Move In Fee","default":0.0},"custom_conditions":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Custom Conditions"},"initials_required_clauses":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Initials Required Clauses"},"landlord_initials_required_clauses":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Landlord Initials Required Clauses"},"optional_addenda_keys":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Optional Addenda Keys"}},"type":"object","title":"LeaseTerms"},"LedgerUpdateRequest":{"properties":{"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"amount":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Amount"},"schedule_e_category":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Schedule E Category"},"transaction_type":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Transaction Type"},"paid_date":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Paid Date"},"due_date":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Due Date"},"status":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Status"},"vendor_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Vendor Id"}},"type":"object","title":"LedgerUpdateRequest"},"ListEnvelope_DocumentOut_":{"properties":{"object":{"type":"string","title":"Object","default":"list"},"data":{"items":{"$ref":"#/components/schemas/DocumentOut"},"type":"array","title":"Data"},"has_more":{"type":"boolean","title":"Has More"},"next_cursor":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Next Cursor"}},"type":"object","required":["data","has_more"],"title":"ListEnvelope[DocumentOut]"},"ListEnvelope_LeaseOut_":{"properties":{"object":{"type":"string","title":"Object","default":"list"},"data":{"items":{"$ref":"#/components/schemas/LeaseOut"},"type":"array","title":"Data"},"has_more":{"type":"boolean","title":"Has More"},"next_cursor":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Next Cursor"}},"type":"object","required":["data","has_more"],"title":"ListEnvelope[LeaseOut]"},"ListEnvelope_MaintenanceTicketOut_":{"properties":{"object":{"type":"string","title":"Object","default":"list"},"data":{"items":{"$ref":"#/components/schemas/MaintenanceTicketOut"},"type":"array","title":"Data"},"has_more":{"type":"boolean","title":"Has More"},"next_cursor":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Next Cursor"}},"type":"object","required":["data","has_more"],"title":"ListEnvelope[MaintenanceTicketOut]"},"ListEnvelope_MessageOut_":{"properties":{"object":{"type":"string","title":"Object","default":"list"},"data":{"items":{"$ref":"#/components/schemas/MessageOut"},"type":"array","title":"Data"},"has_more":{"type":"boolean","title":"Has More"},"next_cursor":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Next Cursor"}},"type":"object","required":["data","has_more"],"title":"ListEnvelope[MessageOut]"},"ListEnvelope_PaymentOut_":{"properties":{"object":{"type":"string","title":"Object","default":"list"},"data":{"items":{"$ref":"#/components/schemas/PaymentOut"},"type":"array","title":"Data"},"has_more":{"type":"boolean","title":"Has More"},"next_cursor":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Next Cursor"}},"type":"object","required":["data","has_more"],"title":"ListEnvelope[PaymentOut]"},"ListEnvelope_PropertyOut_":{"properties":{"object":{"type":"string","title":"Object","default":"list"},"data":{"items":{"$ref":"#/components/schemas/PropertyOut"},"type":"array","title":"Data"},"has_more":{"type":"boolean","title":"Has More"},"next_cursor":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Next Cursor"}},"type":"object","required":["data","has_more"],"title":"ListEnvelope[PropertyOut]"},"ListEnvelope_TenantOut_":{"properties":{"object":{"type":"string","title":"Object","default":"list"},"data":{"items":{"$ref":"#/components/schemas/TenantOut"},"type":"array","title":"Data"},"has_more":{"type":"boolean","title":"Has More"},"next_cursor":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Next Cursor"}},"type":"object","required":["data","has_more"],"title":"ListEnvelope[TenantOut]"},"ListEnvelope_WebhookEndpointOut_":{"properties":{"object":{"type":"string","title":"Object","default":"list"},"data":{"items":{"$ref":"#/components/schemas/WebhookEndpointOut"},"type":"array","title":"Data"},"has_more":{"type":"boolean","title":"Has More"},"next_cursor":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Next Cursor"}},"type":"object","required":["data","has_more"],"title":"ListEnvelope[WebhookEndpointOut]"},"ListingPatchRequest":{"properties":{"headline":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Headline"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"publish_zillow":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Publish Zillow"},"publish_apartments":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Publish Apartments"},"publish_realtor":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Publish Realtor"},"publish_rent":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Publish Rent"},"publish_redfin":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Publish Redfin"},"publish_zumper":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Publish Zumper"},"publish_smartlord":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Publish Smartlord"}},"type":"object","title":"ListingPatchRequest","description":"Partial-update body for PATCH /listings/{id}. Every field is\noptional so the landlord can change one detail without re-sending\nthe whole row. None = leave alone, \"\" = clear (for nullable text)."},"ListingPublishRequest":{"properties":{"unit_id":{"type":"string","maxLength":64,"minLength":1,"title":"Unit Id"},"headline":{"type":"string","maxLength":200,"minLength":1,"title":"Headline"},"description":{"type":"string","maxLength":8000,"minLength":1,"title":"Description"},"publish_zillow":{"type":"boolean","title":"Publish Zillow","default":false},"publish_apartments":{"type":"boolean","title":"Publish Apartments","default":false},"publish_realtor":{"type":"boolean","title":"Publish Realtor","default":false},"publish_rent":{"type":"boolean","title":"Publish Rent","default":false},"publish_redfin":{"type":"boolean","title":"Publish Redfin","default":false},"publish_zumper":{"type":"boolean","title":"Publish Zumper","default":false},"publish_smartlord":{"type":"boolean","title":"Publish Smartlord","default":true},"save_to_unit":{"type":"boolean","title":"Save To Unit","default":true}},"type":"object","required":["unit_id","headline","description"],"title":"ListingPublishRequest"},"ListingStatusRequest":{"properties":{"status":{"type":"string","title":"Status"}},"type":"object","required":["status"],"title":"ListingStatusRequest"},"MaintenanceChatRequest":{"properties":{"tenant_name":{"type":"string","title":"Tenant Name"},"property_address":{"type":"string","title":"Property Address"},"property_id":{"type":"string","title":"Property Id"},"message":{"type":"string","title":"Message"},"history":{"items":{"additionalProperties":{"type":"string"},"type":"object"},"type":"array","title":"History"},"attachment":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Attachment"},"mime_type":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Mime Type"}},"type":"object","required":["tenant_name","property_address","property_id","message","history"],"title":"MaintenanceChatRequest"},"MaintenanceRequest":{"properties":{"description":{"type":"string","title":"Description"}},"type":"object","required":["description"],"title":"MaintenanceRequest"},"MaintenanceTicketOut":{"properties":{"object":{"type":"string","title":"Object","default":"maintenance_ticket"},"id":{"type":"string","title":"Id"},"title":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Title"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"priority":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Priority"},"status":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Status"},"unit_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Unit Id"},"tenant_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Tenant Id"},"vendor_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Vendor Id"},"ai_triage_category":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Ai Triage Category"},"ai_triage_severity":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Ai Triage Severity"},"created_at":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Created At"}},"type":"object","required":["id"],"title":"MaintenanceTicketOut"},"ManualChargeRequest":{"properties":{"tenant_id":{"type":"string","title":"Tenant Id"},"unit_id":{"type":"string","title":"Unit Id"},"amount":{"type":"number","title":"Amount"},"transaction_type":{"type":"string","title":"Transaction Type"},"description":{"type":"string","title":"Description"},"due_date":{"type":"string","title":"Due Date"}},"type":"object","required":["tenant_id","unit_id","amount","transaction_type","description","due_date"],"title":"ManualChargeRequest"},"ManualLedgerRequest":{"properties":{"description":{"type":"string","title":"Description"},"amount":{"type":"number","title":"Amount"},"transaction_type":{"type":"string","title":"Transaction Type"},"schedule_e_category":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Schedule E Category"},"date":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Date"},"unit_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Unit Id"},"vendor_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Vendor Name"},"receipt_url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Receipt Url"},"status":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Status"}},"type":"object","required":["description","amount","transaction_type"],"title":"ManualLedgerRequest"},"ManualPaymentRequest":{"properties":{"tenant_id":{"type":"string","title":"Tenant Id"},"amount":{"type":"number","title":"Amount"},"payment_method":{"type":"string","title":"Payment Method"},"notes":{"type":"string","title":"Notes","default":""}},"type":"object","required":["tenant_id","amount","payment_method"],"title":"ManualPaymentRequest"},"MarkReadPayload":{"properties":{"message_ids":{"items":{"type":"string"},"type":"array","title":"Message Ids"}},"type":"object","required":["message_ids"],"title":"MarkReadPayload"},"MarketplaceItemRequest":{"properties":{"title":{"type":"string","title":"Title"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"price":{"type":"number","title":"Price","default":0.0},"condition":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Condition"},"image_url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Image Url"}},"type":"object","required":["title"],"title":"MarketplaceItemRequest"},"MessageOut":{"properties":{"object":{"type":"string","title":"Object","default":"message"},"id":{"type":"string","title":"Id"},"sender_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Sender Id"},"receiver_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Receiver Id"},"ticket_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Ticket Id"},"content":{"type":"string","title":"Content"},"attachment_url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Attachment Url"},"is_ai_message":{"type":"boolean","title":"Is Ai Message","default":false},"is_read":{"type":"boolean","title":"Is Read","default":false},"lane":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Lane"},"created_at":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Created At"}},"type":"object","required":["id","content"],"title":"MessageOut"},"MigrationConfirmRequest":{"properties":{"items":{"items":{"$ref":"#/components/schemas/MigrationItem"},"type":"array","title":"Items"}},"type":"object","required":["items"],"title":"MigrationConfirmRequest"},"MigrationItem":{"properties":{"id":{"type":"string","title":"Id"},"address":{"type":"string","title":"Address"},"tenant_name":{"type":"string","title":"Tenant Name"},"tenant_email":{"type":"string","title":"Tenant Email"},"rent_amount":{"type":"string","title":"Rent Amount"},"lease_end":{"type":"string","title":"Lease End"}},"type":"object","required":["id","address","tenant_name","tenant_email","rent_amount","lease_end"],"title":"MigrationItem"},"ModeToggle":{"properties":{"demo_mode":{"type":"boolean","title":"Demo Mode"}},"type":"object","required":["demo_mode"],"title":"ModeToggle"},"ModifyPayload":{"properties":{"billing_cycle":{"type":"string","title":"Billing Cycle","default":"monthly"},"units":{"type":"integer","title":"Units","default":1}},"type":"object","title":"ModifyPayload"},"MoveInEmergencyContactPayload":{"properties":{"lease_id":{"type":"string","minLength":1,"title":"Lease Id"},"name":{"type":"string","maxLength":150,"minLength":1,"title":"Name"},"phone":{"type":"string","maxLength":40,"minLength":4,"title":"Phone"},"relation":{"anyOf":[{"type":"string","maxLength":80},{"type":"null"}],"title":"Relation"},"email":{"anyOf":[{"type":"string","maxLength":255},{"type":"null"}],"title":"Email"}},"type":"object","required":["lease_id","name","phone"],"title":"MoveInEmergencyContactPayload","description":"Strict payload for the move-in emergency contact step.\n\n`phone` is required because a name alone is not actionable when a\nbuilding manager needs someone to dial. `email` is optional and\nonly validated for shape if provided."},"MoveInGuidePayload":{"properties":{"property_id":{"type":"string","title":"Property Id"},"wifi_network":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Wifi Network"},"wifi_password":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Wifi Password"},"trash_day":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Trash Day"},"water_garbage_setup":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Water Garbage Setup"}},"type":"object","required":["property_id"],"title":"MoveInGuidePayload"},"MoveOutDamageLine":{"properties":{"item":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Item"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"estimated_repair_cost":{"type":"number","title":"Estimated Repair Cost"}},"type":"object","required":["estimated_repair_cost"],"title":"MoveOutDamageLine"},"MoveOutSettlementPayload":{"properties":{"tenant_id":{"type":"string","title":"Tenant Id"},"lease_id":{"type":"string","title":"Lease Id"},"deductions":{"items":{"$ref":"#/components/schemas/ItemizedDeduction"},"type":"array","title":"Deductions","default":[]},"forwarding_bank_account_token":{"type":"string","title":"Forwarding Bank Account Token"},"typed_confirmation":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Typed Confirmation"}},"type":"object","required":["tenant_id","lease_id"],"title":"MoveOutSettlementPayload"},"MoveOutSettlementPost":{"properties":{"lease_id":{"type":"string","title":"Lease Id"},"total_suggested_deduction":{"type":"number","title":"Total Suggested Deduction"},"justification_summary":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Justification Summary"},"damage_identified":{"items":{"$ref":"#/components/schemas/MoveOutDamageLine"},"type":"array","title":"Damage Identified","default":[]}},"type":"object","required":["lease_id","total_suggested_deduction"],"title":"MoveOutSettlementPost"},"MoveOutSettlementRequest":{"properties":{"tenant_id":{"type":"string","title":"Tenant Id"},"tenant_name":{"type":"string","title":"Tenant Name"},"lease_id":{"type":"string","title":"Lease Id"},"inspection_id":{"type":"string","title":"Inspection Id"},"identified_damages":{"items":{"$ref":"#/components/schemas/DamageItem"},"type":"array","title":"Identified Damages"}},"type":"object","required":["tenant_id","tenant_name","lease_id","inspection_id","identified_damages"],"title":"MoveOutSettlementRequest"},"MultiChannelRequest":{"properties":{"canonical_description":{"type":"string","title":"Canonical Description"},"channels":{"items":{"type":"string"},"type":"array","title":"Channels","default":["zillow","craigslist","facebook_marketplace"]}},"type":"object","required":["canonical_description"],"title":"MultiChannelRequest"},"MultiQuoteRequest":{"properties":{"ticket_id":{"type":"string","title":"Ticket Id"},"candidate_vendor_ids":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Candidate Vendor Ids"}},"type":"object","required":["ticket_id"],"title":"MultiQuoteRequest"},"OfferResponsePayload":{"properties":{"decision":{"type":"string","title":"Decision"},"comments":{"type":"string","title":"Comments","default":""}},"type":"object","required":["decision"],"title":"OfferResponsePayload"},"OnboardingData":{"properties":{"legal_name":{"type":"string","title":"Legal Name"},"business_name":{"type":"string","title":"Business Name"},"business_ein":{"type":"string","title":"Business Ein"},"legal_entity_type":{"type":"string","title":"Legal Entity Type"},"business_address":{"type":"string","title":"Business Address"}},"type":"object","required":["legal_name"],"title":"OnboardingData"},"OnboardingIntentBody":{"properties":{"goal":{"type":"string","maxLength":32,"title":"Goal"}},"type":"object","required":["goal"],"title":"OnboardingIntentBody"},"OnboardingPartial":{"properties":{"legal_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Legal Name"},"business_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Business Name"},"business_ein":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Business Ein"},"legal_entity_type":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Legal Entity Type"},"business_address":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Business Address"}},"type":"object","title":"OnboardingPartial"},"OnboardingRecommendBody":{"properties":{"units":{"type":"integer","maximum":100000.0,"minimum":1.0,"title":"Units"}},"type":"object","required":["units"],"title":"OnboardingRecommendBody"},"PayNowRequest":{"properties":{"amount_to_pay":{"type":"number","title":"Amount To Pay"},"payment_method_preference":{"type":"string","title":"Payment Method Preference","default":"us_bank_account"},"cc_consent_agreed":{"type":"boolean","title":"Cc Consent Agreed","default":false},"cc_consent_nonce":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Cc Consent Nonce"},"payment_method_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Payment Method Id"}},"type":"object","title":"PayNowRequest"},"PayOrQuitRequest":{"properties":{"lease_id":{"type":"string","title":"Lease Id"},"amount_due":{"type":"number","title":"Amount Due"}},"type":"object","required":["lease_id","amount_due"],"title":"PayOrQuitRequest"},"PaymentOut":{"properties":{"object":{"type":"string","title":"Object","default":"payment"},"id":{"type":"string","title":"Id"},"amount":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Amount"},"transaction_type":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Transaction Type"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"due_date":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Due Date"},"paid_date":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Paid Date"},"status":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Status"},"unit_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Unit Id"},"tenant_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Tenant Id"}},"type":"object","required":["id"],"title":"PaymentOut"},"PaymentPlanRequest":{"properties":{"tenant_id":{"type":"string","title":"Tenant Id"},"amount_due":{"type":"number","title":"Amount Due"},"tenant_capacity_note":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Tenant Capacity Note"}},"type":"object","required":["tenant_id","amount_due"],"title":"PaymentPlanRequest"},"PhoneUpdate":{"properties":{"phone":{"type":"string","title":"Phone"}},"type":"object","required":["phone"],"title":"PhoneUpdate"},"PinRequest":{"properties":{"unit_id":{"type":"string","title":"Unit Id"},"label":{"type":"string","title":"Label"},"starts_at":{"type":"string","title":"Starts At"},"ends_at":{"type":"string","title":"Ends At"},"phone_number":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Phone Number"}},"type":"object","required":["unit_id","label","starts_at","ends_at"],"title":"PinRequest"},"PnLRequest":{"properties":{"year":{"type":"integer","title":"Year"},"month":{"type":"integer","title":"Month"}},"type":"object","required":["year","month"],"title":"PnLRequest"},"PortfolioQnARequest":{"properties":{"question":{"type":"string","title":"Question"}},"type":"object","required":["question"],"title":"PortfolioQnARequest"},"PreflightRequest":{"properties":{"lease_id":{"type":"string","title":"Lease Id"},"extra_clauses":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Extra Clauses"}},"type":"object","required":["lease_id"],"title":"PreflightRequest"},"PrescreenRequest":{"properties":{"state":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"State"},"property_type":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Property Type"},"notes":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Notes"}},"type":"object","title":"PrescreenRequest"},"PreviewResponse":{"properties":{"warnings":{"items":{"additionalProperties":true,"type":"object"},"type":"array","title":"Warnings"},"statutory_defaults":{"additionalProperties":true,"type":"object","title":"Statutory Defaults"},"suggested_end_date":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Suggested End Date"}},"type":"object","required":["warnings","statutory_defaults"],"title":"PreviewResponse"},"PricingRecommendRequest":{"properties":{"units":{"type":"integer","maximum":500.0,"minimum":1.0,"title":"Units"},"collects_online":{"type":"boolean","title":"Collects Online","default":false},"primary_pain":{"type":"string","maxLength":80,"title":"Primary Pain","default":""}},"type":"object","required":["units"],"title":"PricingRecommendRequest"},"PrivacyOptOutRequest":{"properties":{"email":{"type":"string","format":"email","title":"Email"},"opt_out_ads":{"type":"boolean","title":"Opt Out Ads","default":false},"limit_sensitive":{"type":"boolean","title":"Limit Sensitive","default":false},"full_name":{"type":"string","maxLength":200,"title":"Full Name","default":""}},"type":"object","required":["email"],"title":"PrivacyOptOutRequest"},"ProfileUpdate":{"properties":{"first_name":{"type":"string","title":"First Name"},"last_name":{"type":"string","title":"Last Name"},"phone":{"type":"string","title":"Phone"},"company_name":{"type":"string","title":"Company Name"},"address":{"type":"string","title":"Address"},"apt":{"type":"string","title":"Apt"},"display_phone":{"type":"string","title":"Display Phone"},"emergency_phone":{"type":"string","title":"Emergency Phone"}},"type":"object","required":["first_name","last_name"],"title":"ProfileUpdate"},"PropertyDescriptionPayload":{"properties":{"property_type":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Property Type"},"year_built":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Year Built"},"num_units":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Num Units","default":1},"street_address":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Street Address"},"city":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"City"},"state":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"State"},"zip_code":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Zip Code"},"common_amenities":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Common Amenities","default":[]},"pet_policy":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Pet Policy"},"laundry_type":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Laundry Type"},"parking_type":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Parking Type"},"current_description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Current Description"}},"type":"object","title":"PropertyDescriptionPayload"},"PropertyDetails":{"properties":{"street_address":{"type":"string","title":"Street Address","default":"123 Main St"},"unit_number":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Unit Number"},"city":{"type":"string","title":"City","default":"City"},"state":{"type":"string","title":"State","default":"MO"},"zip_code":{"type":"string","title":"Zip Code","default":"00000"},"built_before_1978":{"type":"boolean","title":"Built Before 1978","default":false},"active_military":{"type":"boolean","title":"Active Military","default":false},"has_strict_lead_certificate":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Has Strict Lead Certificate","default":false},"has_known_lead":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Has Known Lead","default":false},"lead_known_description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Lead Known Description"},"lead_reports_available":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Lead Reports Available","default":false},"lead_records_description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Lead Records Description"},"lead_exempt_zero_bedroom":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Lead Exempt Zero Bedroom","default":false},"lead_exempt_certified_free":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Lead Exempt Certified Free","default":false},"lead_exempt_senior_disabled":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Lead Exempt Senior Disabled","default":false},"lead_exempt_short_term":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Lead Exempt Short Term","default":false},"minneapolis_license_tier":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Minneapolis License Tier"},"open_code_violations":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Open Code Violations","default":"None"},"year_built":{"type":"integer","title":"Year Built","default":2000},"bedrooms":{"type":"integer","title":"Bedrooms","default":1},"has_window_screens":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Has Window Screens","default":true},"is_in_foreclosure":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Is In Foreclosure","default":false},"has_demolition_plans":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Has Demolition Plans","default":false},"has_known_mold":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Has Known Mold","default":false},"in_flood_zone":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"In Flood Zone","default":false},"flood_history":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Flood History","default":false},"bedbug_history":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Bedbug History","default":false},"building_bedbug_history":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Building Bedbug History","default":false},"is_federally_subsidized":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Is Federally Subsidized","default":false},"radon_test_results_known":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Radon Test Results Known","default":false}},"type":"object","title":"PropertyDetails"},"PropertyOut":{"properties":{"object":{"type":"string","title":"Object","default":"property"},"id":{"type":"string","title":"Id"},"street_address":{"type":"string","title":"Street Address"},"city":{"type":"string","title":"City"},"state":{"type":"string","title":"State"},"zip_code":{"type":"string","title":"Zip Code"},"property_type":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Property Type"},"unit_count":{"type":"integer","title":"Unit Count","default":0},"created_at":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Created At"}},"type":"object","required":["id","street_address","city","state","zip_code"],"title":"PropertyOut"},"PublicShowingBookingCreate":{"properties":{"prospect_name":{"type":"string","title":"Prospect Name"},"prospect_email":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Prospect Email"},"prospect_phone":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Prospect Phone"},"booking_datetime":{"type":"string","format":"date-time","title":"Booking Datetime"},"notes":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Notes"}},"type":"object","required":["prospect_name","booking_datetime"],"title":"PublicShowingBookingCreate"},"PublishRevisionPayload":{"properties":{"payload":{"additionalProperties":true,"type":"object","title":"Payload","description":"UniversalLeasePayload-shaped dict the studio submits"},"change_notes":{"anyOf":[{"type":"string","maxLength":2000},{"type":"null"}],"title":"Change Notes"},"resolves_request_ids":{"items":{"type":"string"},"type":"array","title":"Resolves Request Ids"}},"type":"object","required":["payload"],"title":"PublishRevisionPayload"},"PublishToggle":{"properties":{"publish":{"type":"boolean","title":"Publish"}},"type":"object","required":["publish"],"title":"PublishToggle"},"QuickReplyCreate":{"properties":{"title":{"type":"string","title":"Title"},"content":{"type":"string","title":"Content"}},"type":"object","required":["title","content"],"title":"QuickReplyCreate"},"QuickReplyResponse":{"properties":{"id":{"type":"string","title":"Id"},"title":{"type":"string","title":"Title"},"content":{"type":"string","title":"Content"},"created_at":{"type":"string","format":"date-time","title":"Created At"}},"type":"object","required":["id","title","content","created_at"],"title":"QuickReplyResponse"},"QuoteAnalyzeRequest":{"properties":{"quote_amount":{"type":"number","title":"Quote Amount"},"category":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Category"},"ticket_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Ticket Id"},"zip_code":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Zip Code"}},"type":"object","required":["quote_amount"],"title":"QuoteAnalyzeRequest"},"QuoteRequest":{"properties":{"unit_id":{"type":"string","title":"Unit Id"},"tenant_id":{"type":"string","title":"Tenant Id"}},"type":"object","required":["unit_id","tenant_id"],"title":"QuoteRequest"},"ReceiptData":{"properties":{"merchant_name":{"type":"string","title":"Merchant Name"},"date":{"type":"string","title":"Date"},"total_amount":{"type":"number","title":"Total Amount"},"schedule_e_category":{"type":"string","title":"Schedule E Category"},"confidence_score":{"type":"string","title":"Confidence Score"}},"type":"object","required":["merchant_name","date","total_amount","schedule_e_category","confidence_score"],"title":"ReceiptData"},"ReceiptExpenseRequest":{"properties":{"document_id":{"type":"string","title":"Document Id"}},"type":"object","required":["document_id"],"title":"ReceiptExpenseRequest"},"ReceiptScanResponse":{"properties":{"status":{"type":"string","title":"Status"},"extracted_data":{"anyOf":[{"$ref":"#/components/schemas/ReceiptData"},{"type":"null"}]}},"type":"object","required":["status"],"title":"ReceiptScanResponse"},"RecordOfflineDepositPayload":{"properties":{"lease_id":{"type":"string","title":"Lease Id"},"payment_method":{"type":"string","pattern":"^(cash|check|money_order|bank_wire|cashiers_check)$","title":"Payment Method","description":"How the deposit was received"},"reference_note":{"anyOf":[{"type":"string","maxLength":255},{"type":"null"}],"title":"Reference Note","description":"Check number, money order serial, wire confirmation, etc."},"amount_dollars":{"anyOf":[{"type":"number","maximum":1000000.0,"minimum":0.0},{"type":"null"}],"title":"Amount Dollars","description":"Override amount. Defaults to lease.security_deposit if omitted."}},"type":"object","required":["lease_id","payment_method"],"title":"RecordOfflineDepositPayload","description":"Payload for landlords recording a deposit received outside Stripe."},"RejectPayload":{"properties":{"reason":{"type":"string","title":"Reason"}},"type":"object","required":["reason"],"title":"RejectPayload"},"RemindRentRequest":{"properties":{"tenant_id":{"type":"string","title":"Tenant Id"},"amount_due":{"type":"number","title":"Amount Due"}},"type":"object","required":["tenant_id","amount_due"],"title":"RemindRentRequest"},"RenewalDraftRequest":{"properties":{"lease_id":{"type":"string","title":"Lease Id"}},"type":"object","required":["lease_id"],"title":"RenewalDraftRequest"},"RenewalOfferCreate":{"properties":{"new_monthly_rent":{"type":"number","maximum":1000000.0,"minimum":0.0,"title":"New Monthly Rent"},"new_end_date":{"type":"string","format":"date","title":"New End Date"}},"type":"object","required":["new_monthly_rent","new_end_date"],"title":"RenewalOfferCreate"},"RentPaymentRequest":{"properties":{"unit_id":{"type":"string","maxLength":64,"minLength":1,"title":"Unit Id"},"tenant_id":{"type":"string","maxLength":64,"minLength":1,"title":"Tenant Id"},"amount_paid":{"type":"number","maximum":1000000.0,"exclusiveMinimum":0.0,"title":"Amount Paid"},"payment_date":{"type":"string","format":"date","title":"Payment Date"}},"type":"object","required":["unit_id","tenant_id","amount_paid","payment_date"],"title":"RentPaymentRequest"},"RentSetupPayload":{"properties":{"tenant_stripe_customer_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Tenant Stripe Customer Id"},"landlord_stripe_account_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Landlord Stripe Account Id"},"monthly_rent_amount":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Monthly Rent Amount"},"lease_id":{"type":"string","title":"Lease Id"},"landlord_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Landlord Id"},"trust_account_override":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Trust Account Override"},"payment_method_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Payment Method Id"}},"type":"object","required":["lease_id"],"title":"RentSetupPayload"},"RentSuggestionPayload":{"properties":{"beds":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Beds","default":0},"baths":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Baths","default":0.0},"sqft":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Sqft"},"zip_code":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Zip Code"},"city":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"City"},"state":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"State"},"current_rent":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Current Rent"},"amenities":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Amenities","default":[]}},"type":"object","title":"RentSuggestionPayload"},"RenterProfileUpdate":{"properties":{"headline":{"anyOf":[{"type":"string","maxLength":120},{"type":"null"}],"title":"Headline"},"bio":{"anyOf":[{"type":"string","maxLength":2000},{"type":"null"}],"title":"Bio"},"budget_min":{"anyOf":[{"type":"integer","maximum":100000.0,"minimum":0.0},{"type":"null"}],"title":"Budget Min","description":"USD/month"},"budget_max":{"anyOf":[{"type":"integer","maximum":100000.0,"minimum":0.0},{"type":"null"}],"title":"Budget Max","description":"USD/month"},"beds_wanted":{"anyOf":[{"type":"integer","maximum":10.0,"minimum":0.0},{"type":"null"}],"title":"Beds Wanted"},"baths_wanted":{"anyOf":[{"type":"number","maximum":10.0,"minimum":0.0},{"type":"null"}],"title":"Baths Wanted"},"move_in_earliest":{"anyOf":[{"type":"string","format":"date"},{"type":"null"}],"title":"Move In Earliest"},"move_in_latest":{"anyOf":[{"type":"string","format":"date"},{"type":"null"}],"title":"Move In Latest"},"target_areas":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Target Areas"},"pets":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Pets"},"smoker":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Smoker"},"employment_status":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Employment Status"},"monthly_income":{"anyOf":[{"type":"integer","maximum":10000000.0,"minimum":0.0},{"type":"null"}],"title":"Monthly Income","description":"USD/month"},"credit_range":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Credit Range"},"move_reason":{"anyOf":[{"type":"string","maxLength":1000},{"type":"null"}],"title":"Move Reason"},"photo_url":{"anyOf":[{"type":"string","maxLength":2048},{"type":"null"}],"title":"Photo Url"}},"type":"object","title":"RenterProfileUpdate"},"RequestMoreDocsPayload":{"properties":{"message":{"type":"string","maxLength":1500,"minLength":4,"title":"Message"},"items":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Items"}},"type":"object","required":["message"],"title":"RequestMoreDocsPayload"},"ReverseManualPaymentRequest":{"properties":{"tenant_id":{"type":"string","title":"Tenant Id"}},"type":"object","required":["tenant_id"],"title":"ReverseManualPaymentRequest"},"RightToDeletePayload":{"properties":{"email":{"type":"string","format":"email","title":"Email"},"typed_confirmation":{"type":"string","maxLength":64,"minLength":1,"title":"Typed Confirmation"}},"type":"object","required":["email","typed_confirmation"],"title":"RightToDeletePayload"},"RiskIssue":{"properties":{"title":{"type":"string","title":"Title"},"severity":{"type":"string","title":"Severity"},"explanation":{"type":"string","title":"Explanation"},"citation":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Citation"},"suggested_fix":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Suggested Fix"}},"type":"object","required":["title","severity","explanation"],"title":"RiskIssue"},"RiskPreviewResponse":{"properties":{"document_id":{"type":"string","title":"Document Id"},"overall_risk":{"type":"string","title":"Overall Risk"},"headline":{"type":"string","title":"Headline"},"issues":{"items":{"$ref":"#/components/schemas/RiskIssue"},"type":"array","title":"Issues","default":[]},"missing_disclosures":{"items":{"type":"string"},"type":"array","title":"Missing Disclosures","default":[]},"cached":{"type":"boolean","title":"Cached","default":false}},"type":"object","required":["document_id","overall_risk","headline"],"title":"RiskPreviewResponse"},"RoommateSplit":{"properties":{"id":{"type":"string","minLength":1,"title":"Id"},"percentage":{"type":"number","maximum":100.0,"minimum":0.0,"title":"Percentage"}},"type":"object","required":["id","percentage"],"title":"RoommateSplit","description":"TENANT_PAYMENT_AUDIT.md H5/H10/M9 fix: typed roommate-split row.\n\nReplaces the previous `List[dict]` payload, which accepted arbitrary\nkeys and let `percent` typos silently zero out a roommate's portion.\nPydantic now rejects malformed rows with a 422 instead of returning\na partially-billed lease."},"ScreeningFeeRequest":{"properties":{"lead_id":{"type":"string","title":"Lead Id"},"amount_cents":{"type":"integer","title":"Amount Cents","default":0}},"type":"object","required":["lead_id"],"title":"ScreeningFeeRequest"},"ScreeningPreferencesUpdate":{"properties":{"auto_send_report_copy_to_applicant":{"type":"boolean","title":"Auto Send Report Copy To Applicant"}},"type":"object","required":["auto_send_report_copy_to_applicant"],"title":"ScreeningPreferencesUpdate"},"SecurityReportSubmitIn":{"properties":{"summary":{"type":"string","maxLength":500,"minLength":8,"title":"Summary"},"details":{"type":"string","maxLength":6000,"minLength":20,"title":"Details"},"severity":{"type":"string","maxLength":20,"title":"Severity","default":""},"reporter_email":{"anyOf":[{"type":"string","format":"email"},{"type":"null"}],"title":"Reporter Email"},"reporter_name":{"type":"string","maxLength":120,"title":"Reporter Name","default":""}},"type":"object","required":["summary","details"],"title":"SecurityReportSubmitIn"},"SecurityReportTriageIn":{"properties":{"summary":{"type":"string","maxLength":500,"minLength":8,"title":"Summary"},"details":{"type":"string","maxLength":6000,"title":"Details","default":""},"severity":{"type":"string","maxLength":20,"title":"Severity","default":""}},"type":"object","required":["summary"],"title":"SecurityReportTriageIn"},"SendMessageRequest":{"properties":{"body":{"type":"string","maxLength":4000,"minLength":1,"title":"Body"}},"type":"object","required":["body"],"title":"SendMessageRequest"},"SensorAlertPayload":{"properties":{"sensor_id":{"type":"string","maxLength":128,"minLength":1,"title":"Sensor Id"},"sensor_type":{"type":"string","maxLength":80,"minLength":1,"title":"Sensor Type"},"alert_level":{"type":"string","pattern":"^(info|warning|error|critical)$","title":"Alert Level"},"raw_data":{"additionalProperties":true,"type":"object","title":"Raw Data"}},"type":"object","required":["sensor_id","sensor_type","alert_level","raw_data"],"title":"SensorAlertPayload"},"SentimentRequest":{"properties":{"message_text":{"type":"string","title":"Message Text"}},"type":"object","required":["message_text"],"title":"SentimentRequest"},"ShareRequest":{"properties":{"document_id":{"type":"string","title":"Document Id"},"share_with_email":{"type":"string","title":"Share With Email"}},"type":"object","required":["document_id","share_with_email"],"title":"ShareRequest"},"ShowingSlotCreate":{"properties":{"property_id":{"type":"string","title":"Property Id"},"unit_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Unit Id"},"day_of_week":{"type":"integer","title":"Day Of Week"},"start_time":{"type":"string","title":"Start Time"},"end_time":{"type":"string","title":"End Time"},"slot_duration_minutes":{"type":"integer","title":"Slot Duration Minutes","default":30},"max_bookings_per_slot":{"type":"integer","title":"Max Bookings Per Slot","default":1}},"type":"object","required":["property_id","day_of_week","start_time","end_time"],"title":"ShowingSlotCreate"},"SignaturePayload":{"properties":{"signature_data":{"type":"string","maxLength":2800000,"minLength":1,"title":"Signature Data"},"signature_type":{"type":"string","maxLength":32,"minLength":1,"title":"Signature Type"},"acknowledges_esign":{"type":"boolean","title":"Acknowledges Esign","default":false},"has_read_lease":{"type":"boolean","title":"Has Read Lease","default":false},"signing_token":{"anyOf":[{"type":"string","maxLength":128},{"type":"null"}],"title":"Signing Token"},"scra_active_duty":{"type":"boolean","title":"Scra Active Duty","default":false},"scra_branch":{"anyOf":[{"type":"string","maxLength":40},{"type":"null"}],"title":"Scra Branch"},"scra_orders_start_date":{"anyOf":[{"type":"string","maxLength":10},{"type":"null"}],"title":"Scra Orders Start Date"}},"type":"object","required":["signature_data","signature_type"],"title":"SignaturePayload"},"SignatureRequestPayload":{"properties":{"document_id":{"type":"string","maxLength":128,"minLength":1,"title":"Document Id"},"landlord_signature":{"anyOf":[{"type":"string","maxLength":2800000},{"type":"null"}],"title":"Landlord Signature"},"landlord_sig_preference":{"type":"string","enum":["ESIGN_NOW","WET_SIGN","SIGN_LATER"],"title":"Landlord Sig Preference","default":"SIGN_LATER"},"tenant_emails":{"items":{"type":"string","format":"email"},"type":"array","maxItems":10,"title":"Tenant Emails"},"tenant_names":{"items":{"type":"string"},"type":"array","maxItems":10,"title":"Tenant Names"},"tenant_roles":{"items":{"type":"string","enum":["tenant","guarantor","co_signer"]},"type":"array","maxItems":10,"title":"Tenant Roles"}},"type":"object","required":["document_id"],"title":"SignatureRequestPayload"},"SignoffRequest":{"properties":{"rating":{"type":"integer","title":"Rating"},"feedback":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Feedback"}},"type":"object","required":["rating"],"title":"SignoffRequest"},"SmartFolderCreate":{"properties":{"name":{"type":"string","title":"Name"},"rule_type":{"type":"string","title":"Rule Type"},"rule_value":{"type":"string","title":"Rule Value"}},"type":"object","required":["name","rule_type","rule_value"],"title":"SmartFolderCreate"},"StageUpdate":{"properties":{"lead_id":{"type":"string","title":"Lead Id"},"new_stage":{"type":"string","title":"New Stage"}},"type":"object","required":["lead_id","new_stage"],"title":"StageUpdate"},"StartApplicationPayload":{"properties":{"first_name":{"type":"string","maxLength":80,"minLength":1,"title":"First Name"},"last_name":{"type":"string","maxLength":80,"minLength":1,"title":"Last Name"},"email":{"type":"string","format":"email","title":"Email"},"phone":{"type":"string","maxLength":30,"minLength":7,"title":"Phone"},"move_in_date":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Move In Date"},"fair_housing_acknowledged":{"type":"boolean","title":"Fair Housing Acknowledged","default":false},"company":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Company","default":""}},"type":"object","required":["first_name","last_name","email","phone"],"title":"StartApplicationPayload","description":"Public Apply on-ramp payload. Mirrors the smallest possible set of\nfields needed to open a Lead row that the existing /apply flow can\npick up. Fair Housing rule: no protected-class questions (race, sex,\nreligion, national origin, familial status, disability, source of\nincome, age). Move-in date is optional because the existing /apply\npage also collects it and we do not want to gate the on-ramp on a\nfield the renter may want to think about.\n\nThe honeypot field is a bot deterrent. It is rendered hidden in the\nDOM with no label; any value other than empty is treated as spam."},"StartWalkthroughRequest":{"properties":{"move_out_date":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Move Out Date","description":"ISO date the tenant vacates. Defaults to today."}},"type":"object","title":"StartWalkthroughRequest"},"StateSetupRequest":{"properties":{"state":{"type":"string","title":"State"},"property_type":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Property Type","default":"single_family"}},"type":"object","required":["state"],"title":"StateSetupRequest"},"StripeDisconnectPayload":{"properties":{"confirm":{"type":"string","title":"Confirm"}},"type":"object","required":["confirm"],"title":"StripeDisconnectPayload"},"StripeFeeSnapshotPayload":{"properties":{"ach_percent":{"type":"number","title":"Ach Percent"},"ach_cap_usd":{"type":"number","title":"Ach Cap Usd"},"card_percent":{"type":"number","title":"Card Percent"},"card_flat_usd":{"type":"number","title":"Card Flat Usd"},"recipient_card_cap_usd":{"type":"number","title":"Recipient Card Cap Usd"},"effective_from":{"type":"string","title":"Effective From"},"notes":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Notes"},"typed_confirmation":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Typed Confirmation"}},"type":"object","required":["ach_percent","ach_cap_usd","card_percent","card_flat_usd","recipient_card_cap_usd","effective_from"],"title":"StripeFeeSnapshotPayload"},"SubscribeKeys":{"properties":{"p256dh":{"type":"string","maxLength":512,"minLength":10,"title":"P256Dh"},"auth":{"type":"string","maxLength":128,"minLength":10,"title":"Auth"}},"type":"object","required":["p256dh","auth"],"title":"SubscribeKeys"},"SubscribeRequest":{"properties":{"endpoint":{"type":"string","maxLength":2048,"minLength":10,"title":"Endpoint"},"keys":{"$ref":"#/components/schemas/SubscribeKeys"},"user_agent":{"anyOf":[{"type":"string","maxLength":512},{"type":"null"}],"title":"User Agent"},"platform":{"anyOf":[{"type":"string","maxLength":16},{"type":"null"}],"title":"Platform"},"native_token":{"anyOf":[{"type":"string","maxLength":4096},{"type":"null"}],"title":"Native Token"}},"type":"object","required":["endpoint","keys"],"title":"SubscribeRequest"},"Suggestion":{"properties":{"setting":{"type":"string","title":"Setting"},"target_value":{"title":"Target Value"},"title":{"type":"string","title":"Title"},"rationale":{"type":"string","title":"Rationale"},"impact":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Impact"}},"type":"object","required":["setting","target_value","title","rationale"],"title":"Suggestion"},"SummaryResponse":{"properties":{"summary_points":{"items":{"type":"string"},"type":"array","title":"Summary Points"},"key_terms":{"items":{"$ref":"#/components/schemas/KeyTerm"},"type":"array","title":"Key Terms","default":[]},"flagged_clauses":{"items":{"$ref":"#/components/schemas/FlaggedClause"},"type":"array","title":"Flagged Clauses","default":[]},"cached":{"type":"boolean","title":"Cached","default":false}},"type":"object","required":["summary_points"],"title":"SummaryResponse"},"SupportTicketPayload":{"properties":{"name":{"type":"string","title":"Name"},"email":{"type":"string","format":"email","title":"Email"},"phone":{"type":"string","title":"Phone"},"message":{"type":"string","title":"Message"}},"type":"object","required":["name","email","phone","message"],"title":"SupportTicketPayload"},"SurchargeConsentRequest":{"properties":{"agree":{"type":"boolean","title":"Agree"}},"type":"object","required":["agree"],"title":"SurchargeConsentRequest"},"SyntheticIdentityRequest":{"properties":{"applicant_payload":{"additionalProperties":true,"type":"object","title":"Applicant Payload"}},"type":"object","required":["applicant_payload"],"title":"SyntheticIdentityRequest"},"SystemSettingsUpdate":{"properties":{"send_rent_reminders":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Send Rent Reminders"},"auto_send_renewal_reminders":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Auto Send Renewal Reminders"},"auto_send_late_rent_warnings":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Auto Send Late Rent Warnings"},"auto_send_renewal_offers":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Auto Send Renewal Offers"},"auto_renewal_rent_increase_pct":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Auto Renewal Rent Increase Pct"}},"type":"object","title":"SystemSettingsUpdate"},"TaxInfoIn":{"properties":{"entity_type":{"type":"string","maxLength":100,"minLength":1,"title":"Entity Type"},"legal_name":{"type":"string","maxLength":255,"minLength":1,"title":"Legal Name"},"tax_id_type":{"type":"string","maxLength":50,"minLength":1,"title":"Tax Id Type"},"tax_id_number":{"anyOf":[{"type":"string","maxLength":64},{"type":"null"}],"title":"Tax Id Number"},"street_address":{"type":"string","maxLength":255,"minLength":1,"title":"Street Address"},"city":{"type":"string","maxLength":100,"minLength":1,"title":"City"},"state":{"type":"string","maxLength":50,"minLength":1,"title":"State"},"zip_code":{"type":"string","maxLength":20,"minLength":1,"title":"Zip Code"}},"type":"object","required":["entity_type","legal_name","tax_id_type","street_address","city","state","zip_code"],"title":"TaxInfoIn"},"TaxInfoOut":{"properties":{"entity_type":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Entity Type"},"legal_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Legal Name"},"tax_id_type":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Tax Id Type"},"tax_id_last4":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Tax Id Last4"},"tax_id_masked":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Tax Id Masked"},"tax_id_on_file":{"type":"boolean","title":"Tax Id On File","default":false},"street_address":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Street Address"},"city":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"City"},"state":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"State"},"zip_code":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Zip Code"},"documents":{"items":{},"type":"array","title":"Documents","default":[]}},"type":"object","title":"TaxInfoOut"},"TenantChangeRequestPayload":{"properties":{"clause_anchor":{"anyOf":[{"type":"string","maxLength":120},{"type":"null"}],"title":"Clause Anchor"},"clause_title":{"anyOf":[{"type":"string","maxLength":255},{"type":"null"}],"title":"Clause Title"},"ai_flag_severity":{"anyOf":[{"type":"string","maxLength":20},{"type":"null"}],"title":"Ai Flag Severity"},"tenant_comment":{"type":"string","maxLength":2000,"minLength":4,"title":"Tenant Comment"},"signing_token":{"anyOf":[{"type":"string","maxLength":128},{"type":"null"}],"title":"Signing Token"}},"type":"object","required":["tenant_comment"],"title":"TenantChangeRequestPayload"},"TenantChatRequest":{"properties":{"message":{"type":"string","title":"Message"}},"type":"object","required":["message"],"title":"TenantChatRequest"},"TenantInviteCreate":{"properties":{"first_name":{"type":"string","maxLength":100,"minLength":1,"title":"First Name"},"last_name":{"type":"string","maxLength":100,"minLength":1,"title":"Last Name"},"email":{"type":"string","format":"email","title":"Email"},"phone":{"anyOf":[{"type":"string","maxLength":20},{"type":"null"}],"title":"Phone"},"unit_id":{"type":"string","maxLength":120,"minLength":1,"title":"Unit Id"},"target_rent":{"anyOf":[{"type":"number","maximum":1000000.0,"minimum":0.0},{"type":"null"}],"title":"Target Rent"},"personal_note":{"anyOf":[{"type":"string","maxLength":2000},{"type":"null"}],"title":"Personal Note"}},"type":"object","required":["first_name","last_name","email","unit_id"],"title":"TenantInviteCreate"},"TenantInviteOut":{"properties":{"object":{"type":"string","title":"Object","default":"tenant_invite"},"id":{"type":"string","title":"Id"},"email":{"type":"string","title":"Email"},"first_name":{"type":"string","title":"First Name"},"last_name":{"type":"string","title":"Last Name"},"unit_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Unit Id"},"invite_link":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Invite Link"},"sent":{"type":"boolean","title":"Sent"}},"type":"object","required":["id","email","first_name","last_name","sent"],"title":"TenantInviteOut"},"TenantInviteRequest":{"properties":{"first_name":{"type":"string","maxLength":80,"minLength":1,"title":"First Name"},"last_name":{"type":"string","maxLength":80,"minLength":1,"title":"Last Name"},"email":{"type":"string","format":"email","title":"Email"},"phone":{"anyOf":[{"type":"string","maxLength":30},{"type":"null"}],"title":"Phone"},"method":{"type":"string","pattern":"^(email|text|both)$","title":"Method"},"update_listing":{"type":"boolean","title":"Update Listing","default":false},"property_id":{"type":"string","maxLength":64,"minLength":1,"title":"Property Id"},"target_rent":{"type":"number","maximum":1000000.0,"minimum":0.0,"title":"Target Rent"},"security_deposit":{"type":"number","maximum":1000000.0,"minimum":0.0,"title":"Security Deposit"},"screening_tier":{"type":"string","maxLength":64,"minLength":1,"title":"Screening Tier"},"include_credit":{"type":"boolean","title":"Include Credit","default":false},"application_fee":{"anyOf":[{"type":"number","maximum":500.0,"minimum":0.0},{"type":"null"}],"title":"Application Fee","default":0.0},"move_in_date":{"anyOf":[{"type":"string","format":"date"},{"type":"null"}],"title":"Move In Date"},"lease_term_months":{"anyOf":[{"type":"integer","maximum":120.0,"minimum":1.0},{"type":"null"}],"title":"Lease Term Months","default":12},"personal_note":{"anyOf":[{"type":"string","maxLength":2000},{"type":"null"}],"title":"Personal Note"},"screening_timing":{"type":"string","enum":["now","later","never"],"title":"Screening Timing","default":"now"},"skip_background_check":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Skip Background Check"},"payment_responsibility":{"type":"string","pattern":"^(tenant|landlord|split)$","title":"Payment Responsibility","default":"tenant"}},"type":"object","required":["first_name","last_name","email","method","property_id","target_rent","security_deposit","screening_tier"],"title":"TenantInviteRequest"},"TenantLeaseQARequest":{"properties":{"message":{"type":"string","title":"Message"}},"type":"object","required":["message"],"title":"TenantLeaseQARequest"},"TenantMessagePayload":{"properties":{"tenant_email":{"type":"string","title":"Tenant Email"},"subject":{"type":"string","title":"Subject"},"message":{"type":"string","title":"Message"}},"type":"object","required":["tenant_email","subject","message"],"title":"TenantMessagePayload"},"TenantOut":{"properties":{"object":{"type":"string","title":"Object","default":"tenant"},"id":{"type":"string","title":"Id"},"first_name":{"type":"string","title":"First Name"},"last_name":{"type":"string","title":"Last Name"},"email":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Email"},"phone":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Phone"}},"type":"object","required":["id","first_name","last_name"],"title":"TenantOut"},"TenantRenewalRequest":{"properties":{"comments":{"type":"string","maxLength":4000,"minLength":1,"title":"Comments","description":"Tenant comments or requests for the renewal"}},"type":"object","required":["comments"],"title":"TenantRenewalRequest"},"TerminationRequest":{"properties":{"lease_id":{"type":"string","title":"Lease Id"},"notice_type":{"type":"string","title":"Notice Type","default":"non_renewal"},"reason_summary":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Reason Summary"}},"type":"object","required":["lease_id"],"title":"TerminationRequest"},"ThermostatRequest":{"properties":{"unit_id":{"type":"string","title":"Unit Id"},"target_temperature_f":{"type":"number","title":"Target Temperature F"}},"type":"object","required":["unit_id","target_temperature_f"],"title":"ThermostatRequest"},"ThirdPartyPayerPayload":{"properties":{"payer_type":{"type":"string","title":"Payer Type"},"payer_name":{"type":"string","title":"Payer Name"},"payer_email":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Payer Email"},"payer_user_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Payer User Id"},"monthly_amount":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Monthly Amount"},"monthly_percentage":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Monthly Percentage"},"notes":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Notes"}},"type":"object","required":["payer_type","payer_name"],"title":"ThirdPartyPayerPayload"},"ThreadSummaryRequest":{"properties":{"ticket_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Ticket Id"},"other_party_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Other Party Id"}},"type":"object","title":"ThreadSummaryRequest"},"TicketCreate":{"properties":{"title":{"type":"string","maxLength":200,"minLength":1,"title":"Title"},"description":{"type":"string","maxLength":8000,"minLength":1,"title":"Description"},"priority":{"type":"string","pattern":"^(low|medium|high|urgent|emergency)$","title":"Priority"},"permission_to_enter":{"type":"boolean","title":"Permission To Enter"}},"type":"object","required":["title","description","priority","permission_to_enter"],"title":"TicketCreate"},"TicketMarkReadPayload":{"properties":{"message_ids":{"items":{"type":"string"},"type":"array","title":"Message Ids"}},"type":"object","required":["message_ids"],"title":"TicketMarkReadPayload"},"TicketMessageCreate":{"properties":{"content":{"type":"string","maxLength":8000,"minLength":1,"title":"Content"},"lane":{"anyOf":[{"type":"string","pattern":"^(landlord_tenant|landlord_vendor|landlord_internal|shared)$"},{"type":"null"}],"title":"Lane"}},"type":"object","required":["content"],"title":"TicketMessageCreate"},"TicketStatusUpdate":{"properties":{"status":{"type":"string","title":"Status"},"expected_version":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Expected Version"}},"type":"object","required":["status"],"title":"TicketStatusUpdate"},"TimeToRentRequest":{"properties":{"monthly_rent":{"type":"number","title":"Monthly Rent"},"bedrooms":{"type":"integer","title":"Bedrooms"},"bathrooms":{"type":"number","title":"Bathrooms"},"zip_code":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Zip Code"},"photos_count":{"type":"integer","title":"Photos Count","default":0},"listed_channels_count":{"type":"integer","title":"Listed Channels Count","default":1}},"type":"object","required":["monthly_rent","bedrooms","bathrooms"],"title":"TimeToRentRequest"},"ToggleAutopayPayload":{"properties":{"lease_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Lease Id"}},"type":"object","title":"ToggleAutopayPayload"},"ToggleSharedThreadBody":{"properties":{"open":{"type":"boolean","title":"Open"}},"type":"object","required":["open"],"title":"ToggleSharedThreadBody"},"TriageResponse":{"properties":{"category":{"type":"string","title":"Category"},"urgency_level":{"type":"string","title":"Urgency Level"},"ai_troubleshooting_tip":{"type":"string","title":"Ai Troubleshooting Tip"},"requires_vendor_dispatch":{"type":"boolean","title":"Requires Vendor Dispatch"}},"type":"object","required":["category","urgency_level","ai_troubleshooting_tip","requires_vendor_dispatch"],"title":"TriageResponse"},"TriageTextBody":{"properties":{"text":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Text"},"voice_transcript":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Voice Transcript"},"zip_code":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Zip Code"}},"type":"object","title":"TriageTextBody"},"TrialActivationRequest":{"properties":{"first_name":{"type":"string","title":"First Name"},"last_name":{"type":"string","title":"Last Name"},"intended_plan":{"type":"string","title":"Intended Plan"},"portfolio_size":{"type":"string","title":"Portfolio Size","default":""},"trial_days":{"type":"integer","maximum":30.0,"title":"Trial Days","default":30},"coupon_code":{"type":"string","title":"Coupon Code"}},"type":"object","required":["first_name","last_name","intended_plan"],"title":"TrialActivationRequest"},"UnitEditPayload":{"properties":{"unit_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Unit Id"},"unit_number":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Unit Number"},"beds":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Beds","default":0},"baths":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Baths","default":0.0},"rent_amount":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Rent Amount","default":0.0},"security_deposit":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Security Deposit","default":0.0},"marketing_description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Marketing Description"},"sqft":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Sqft"},"year_built":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Year Built"},"available_date":{"anyOf":[{"type":"string","format":"date"},{"type":"null"}],"title":"Available Date"},"pet_policy":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Pet Policy","default":"negotiable"},"laundry_type":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Laundry Type"},"parking_type":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Parking Type"},"amenities":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Amenities","default":[]},"lead_paint_exempt":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Lead Paint Exempt","default":false},"lead_paint_exempt_reason":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Lead Paint Exempt Reason"}},"type":"object","title":"UnitEditPayload"},"UnitUpdatePayload":{"properties":{"unit_id":{"type":"string","title":"Unit Id"},"target_rent":{"type":"number","title":"Target Rent"},"bedrooms":{"type":"integer","title":"Bedrooms"},"bathrooms":{"type":"number","title":"Bathrooms"},"square_feet":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Square Feet"}},"type":"object","required":["unit_id","target_rent","bedrooms","bathrooms"],"title":"UnitUpdatePayload"},"UniversalLeasePayload":{"properties":{"landlord_sig_preference":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Landlord Sig Preference","default":"ESIGN_NOW"},"landlord":{"$ref":"#/components/schemas/LandlordInfo"},"property":{"$ref":"#/components/schemas/PropertyDetails"},"terms":{"$ref":"#/components/schemas/LeaseTerms"},"tenant_names":{"items":{"type":"string"},"type":"array","title":"Tenant Names"},"tenant_emails":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Tenant Emails","default":[]},"tenant_roles":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Tenant Roles"}},"type":"object","required":["landlord","property","terms","tenant_names"],"title":"UniversalLeasePayload"},"UnsubscribeRequest":{"properties":{"endpoint":{"type":"string","maxLength":2048,"minLength":10,"title":"Endpoint"}},"type":"object","required":["endpoint"],"title":"UnsubscribeRequest"},"VacancyRescueRequest":{"properties":{"unit_id":{"type":"string","title":"Unit Id"},"days_vacant":{"type":"integer","title":"Days Vacant"}},"type":"object","required":["unit_id","days_vacant"],"title":"VacancyRescueRequest"},"ValidateCouponPayload":{"properties":{"coupon_code":{"type":"string","title":"Coupon Code"}},"type":"object","required":["coupon_code"],"title":"ValidateCouponPayload"},"ValidatePromoPayload":{"properties":{"code":{"type":"string","title":"Code"}},"type":"object","required":["code"],"title":"ValidatePromoPayload"},"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"},"VendorAvailabilityPayload":{"properties":{"blocks":{"items":{},"type":"array","title":"Blocks"}},"type":"object","required":["blocks"],"title":"VendorAvailabilityPayload"},"VendorBidSubmit":{"properties":{"estimated_cost_cents":{"type":"integer","title":"Estimated Cost Cents"},"earliest_start_date":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Earliest Start Date"},"notes":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Notes"}},"type":"object","required":["estimated_cost_cents"],"title":"VendorBidSubmit"},"VendorCheckInPayload":{"properties":{"latitude":{"type":"number","title":"Latitude"},"longitude":{"type":"number","title":"Longitude"}},"type":"object","required":["latitude","longitude"],"title":"VendorCheckInPayload"},"VendorCreate":{"properties":{"company_name":{"type":"string","title":"Company Name"},"contact_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Contact Name"},"specialty":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Specialty"},"phone":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Phone"},"email":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Email"}},"type":"object","required":["company_name"],"title":"VendorCreate"},"VendorDeclinePayload":{"properties":{"reason":{"type":"string","title":"Reason","default":""}},"type":"object","title":"VendorDeclinePayload"},"VendorInterestPayload":{"properties":{"note":{"type":"string","title":"Note","default":""}},"type":"object","title":"VendorInterestPayload"},"VendorInvite":{"properties":{"email":{"type":"string","format":"email","title":"Email"},"vendor_name":{"type":"string","title":"Vendor Name"},"specialty":{"type":"string","title":"Specialty"},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message"}},"type":"object","required":["email","vendor_name","specialty"],"title":"VendorInvite"},"VendorInviteAccept":{"properties":{"first_name":{"type":"string","title":"First Name"},"last_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Last Name"},"email":{"type":"string","format":"email","title":"Email"},"password":{"type":"string","title":"Password"},"company_name":{"type":"string","title":"Company Name"},"specialty":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Specialty"},"phone":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Phone"},"address_street":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Address Street"},"address_city":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Address City"},"address_state":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Address State"},"address_zip":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Address Zip"}},"type":"object","required":["first_name","email","password","company_name"],"title":"VendorInviteAccept"},"VendorListingUpdate":{"properties":{"company_name":{"anyOf":[{"type":"string","maxLength":150},{"type":"null"}],"title":"Company Name"},"specialty":{"anyOf":[{"type":"string","maxLength":100},{"type":"null"}],"title":"Specialty"},"contact_name":{"anyOf":[{"type":"string","maxLength":100},{"type":"null"}],"title":"Contact Name"},"phone":{"anyOf":[{"type":"string","maxLength":20},{"type":"null"}],"title":"Phone"},"address_city":{"anyOf":[{"type":"string","maxLength":100},{"type":"null"}],"title":"Address City"},"address_state":{"anyOf":[{"type":"string","maxLength":50},{"type":"null"}],"title":"Address State"},"address_zip":{"anyOf":[{"type":"string","maxLength":20},{"type":"null"}],"title":"Address Zip"},"directory_tagline":{"anyOf":[{"type":"string","maxLength":120},{"type":"null"}],"title":"Directory Tagline"},"directory_bio":{"anyOf":[{"type":"string","maxLength":2000},{"type":"null"}],"title":"Directory Bio"},"service_areas":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Service Areas"},"service_radius_miles":{"anyOf":[{"type":"integer","maximum":500.0,"minimum":0.0},{"type":"null"}],"title":"Service Radius Miles"},"years_experience":{"anyOf":[{"type":"integer","maximum":99.0,"minimum":0.0},{"type":"null"}],"title":"Years Experience"},"hourly_rate_min":{"anyOf":[{"type":"integer","maximum":10000.0,"minimum":0.0},{"type":"null"}],"title":"Hourly Rate Min","description":"USD"},"hourly_rate_max":{"anyOf":[{"type":"integer","maximum":10000.0,"minimum":0.0},{"type":"null"}],"title":"Hourly Rate Max","description":"USD"},"availability_status":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Availability Status"},"response_time_hours":{"anyOf":[{"type":"integer","maximum":168.0,"minimum":0.0},{"type":"null"}],"title":"Response Time Hours"},"gallery_photos":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Gallery Photos"},"license_number":{"anyOf":[{"type":"string","maxLength":100},{"type":"null"}],"title":"License Number"}},"type":"object","title":"VendorListingUpdate"},"VendorMaterialsUpsert":{"properties":{"items":{"items":{},"type":"array","title":"Items"}},"type":"object","required":["items"],"title":"VendorMaterialsUpsert","description":"Full replace of the materials line items list.\n\nThe UI sends the entire list each time so partial-update bugs can't\ndrift cost totals. Each line: {id, description, qty, unit_cost_cents,\ntotal_cents, receipt_url}."},"VendorMessagePost":{"properties":{"body":{"type":"string","title":"Body"},"attachment_url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Attachment Url"}},"type":"object","required":["body"],"title":"VendorMessagePost"},"VendorPhotoUpload":{"properties":{"stage":{"type":"string","title":"Stage"},"data_url":{"type":"string","title":"Data Url"},"caption":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Caption"}},"type":"object","required":["stage","data_url"],"title":"VendorPhotoUpload","description":"Photos sent as data URLs from the camera capture or file picker.\n\n`stage` is one of 'before', 'during', 'after' and is recorded on the\nURL path stored in vendor_notes-managed JSON so the UI can render\nthe three-column timeline. Real file storage migrates to GCS later;\nPhase 1c writes to the same vendor_invoices/ directory the existing\n/complete endpoint uses so we do not yet introduce a new bucket\nconfig surface."},"VendorRecommendRequest":{"properties":{"ticket_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Ticket Id"},"category":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Category"},"zip_code":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Zip Code"}},"type":"object","title":"VendorRecommendRequest"},"VendorReviewReplyPayload":{"properties":{"role":{"type":"string","title":"Role"},"body":{"type":"string","title":"Body"}},"type":"object","required":["role","body"],"title":"VendorReviewReplyPayload"},"VendorReviewRequestPayload":{"properties":{"ticket_id":{"type":"string","title":"Ticket Id"},"channel":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Channel","default":"email"}},"type":"object","required":["ticket_id"],"title":"VendorReviewRequestPayload"},"VendorStateTransition":{"properties":{"state":{"type":"string","title":"State"},"note":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Note"}},"type":"object","required":["state"],"title":"VendorStateTransition"},"W9Confirmation":{"properties":{"legal_name":{"type":"string","title":"Legal Name"},"business_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Business Name"},"entity_type":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Entity Type"},"tax_id":{"type":"string","title":"Tax Id"}},"type":"object","required":["legal_name","tax_id"],"title":"W9Confirmation","description":"Landlord-confirmed W-9 data (Rule 20: AI proposes, landlord decides).\n\nThe extract endpoint returns AI-suggested fields; the landlord reviews,\nedits if needed, and POSTs this payload to actually persist."},"W9ExtractResponse":{"properties":{"entity_type":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Entity Type"},"legal_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Legal Name"},"tax_id_type":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Tax Id Type"},"tax_id_number":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Tax Id Number"},"street_address":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Street Address"},"city":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"City"},"state":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"State"},"zip_code":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Zip Code"},"confidence":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Confidence"},"notes":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Notes"}},"type":"object","title":"W9ExtractResponse"},"WebhookEndpointCreate":{"properties":{"url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Url"},"description":{"anyOf":[{"type":"string","maxLength":255},{"type":"null"}],"title":"Description"},"events":{"items":{"type":"string"},"type":"array","maxItems":20,"minItems":1,"title":"Events"}},"type":"object","required":["url","events"],"title":"WebhookEndpointCreate"},"WebhookEndpointOut":{"properties":{"object":{"type":"string","title":"Object","default":"webhook_endpoint"},"id":{"type":"string","title":"Id"},"url":{"type":"string","title":"Url"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"events":{"items":{"type":"string"},"type":"array","title":"Events"},"status":{"type":"string","title":"Status"},"created_at":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Created At"},"signing_secret":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Signing Secret","description":"Returned ONCE at creation; never on subsequent reads."}},"type":"object","required":["id","url","events","status"],"title":"WebhookEndpointOut"},"WelcomePacketRequest":{"properties":{"lease_id":{"type":"string","title":"Lease Id"},"extras":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Extras"}},"type":"object","required":["lease_id"],"title":"WelcomePacketRequest"},"WithdrawApplicationPayload":{"properties":{"email":{"type":"string","format":"email","title":"Email"},"reason":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Reason"}},"type":"object","required":["email"],"title":"WithdrawApplicationPayload"},"WizardAnswers":{"properties":{"state":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"State"},"street_address":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Street Address"},"unit_number":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Unit Number"},"city":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"City"},"zip_code":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Zip Code"},"tenant_names":{"items":{"type":"string"},"type":"array","title":"Tenant Names"},"tenant_emails":{"items":{"type":"string"},"type":"array","title":"Tenant Emails"},"monthly_rent":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Monthly Rent"},"security_deposit":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Security Deposit"},"start_date":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Start Date"},"term_months":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Term Months","default":12},"converts_to_month_to_month":{"type":"boolean","title":"Converts To Month To Month","default":true},"pets_allowed":{"type":"boolean","title":"Pets Allowed","default":false},"number_of_pets":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Number Of Pets","default":0},"pet_deposit":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Pet Deposit","default":0.0},"smoking_allowed":{"type":"boolean","title":"Smoking Allowed","default":false},"late_fee_amount":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Late Fee Amount"}},"type":"object","title":"WizardAnswers"},"_AbandonPayload":{"properties":{"step":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Step"}},"type":"object","title":"_AbandonPayload"},"_AcknowledgePayload":{"properties":{"note":{"anyOf":[{"type":"string","maxLength":2000},{"type":"null"}],"title":"Note"}},"type":"object","title":"_AcknowledgePayload"},"_BenefitsEnrollPayload":{"properties":{"lease_id":{"type":"string","title":"Lease Id"},"tier":{"type":"string","title":"Tier"},"payer":{"type":"string","title":"Payer","default":"tenant"}},"type":"object","required":["lease_id","tier"],"title":"_BenefitsEnrollPayload"},"_BrandPayload":{"properties":{"subdomain":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Subdomain"},"display_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Display Name"},"logo_url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Logo Url"},"favicon_url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Favicon Url"},"primary_color":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Primary Color"},"accent_color":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Accent Color"},"support_email":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Support Email"},"support_phone":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Support Phone"},"contact_address":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Contact Address"},"tagline":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Tagline"},"css_overrides":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Css Overrides"}},"type":"object","title":"_BrandPayload"},"_BulkDraftRequest":{"properties":{"lease_ids":{"items":{"type":"string"},"type":"array","title":"Lease Ids"},"intent":{"type":"string","title":"Intent","default":"general"},"custom_note":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Custom Note"}},"type":"object","required":["lease_ids"],"title":"_BulkDraftRequest"},"_BulkExportRequest":{"properties":{"lease_ids":{"items":{"type":"string"},"type":"array","title":"Lease Ids"}},"type":"object","required":["lease_ids"],"title":"_BulkExportRequest"},"_BulkSendRequest":{"properties":{"lease_ids":{"items":{"type":"string"},"type":"array","title":"Lease Ids"},"subject":{"type":"string","title":"Subject"},"body":{"type":"string","title":"Body"}},"type":"object","required":["lease_ids","subject","body"],"title":"_BulkSendRequest"},"_CancellationFeedbackPayload":{"properties":{"primary_reason":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Primary Reason"},"secondary_reasons":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Secondary Reasons"},"rating":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Rating"},"nps_score":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Nps Score"},"feedback_text":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Feedback Text"},"most_valuable_feature":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Most Valuable Feature"},"missing_feature":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Missing Feature"},"competitor_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Competitor Name"}},"type":"object","title":"_CancellationFeedbackPayload"},"_CustomDomainPayload":{"properties":{"custom_domain":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Custom Domain"}},"type":"object","title":"_CustomDomainPayload"},"_DealAnalyzerRequest":{"properties":{"calc_type":{"type":"string","title":"Calc Type","description":"capRate | coc | brrrr"},"inputs":{"additionalProperties":true,"type":"object","title":"Inputs"},"location":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Location","description":"Optional ZIP, city, or state"}},"type":"object","required":["calc_type"],"title":"_DealAnalyzerRequest"},"_DocStudioDraftPayload":{"properties":{"payload":{"additionalProperties":true,"type":"object","title":"Payload"}},"type":"object","required":["payload"],"title":"_DocStudioDraftPayload"},"_DocStudioSaveAsPayload":{"properties":{"name":{"type":"string","maxLength":120,"minLength":1,"title":"Name"}},"type":"object","required":["name"],"title":"_DocStudioSaveAsPayload"},"_DocStudioSuggestNamePayload":{"properties":{"payload":{"additionalProperties":true,"type":"object","title":"Payload"}},"type":"object","title":"_DocStudioSuggestNamePayload"},"_DocumentBody":{"properties":{"document_type":{"type":"string","title":"Document Type"},"content":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Content"},"jurisdiction":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Jurisdiction"}},"type":"object","required":["document_type"],"title":"_DocumentBody"},"_EmailDocPayload":{"properties":{"document_id":{"type":"string","title":"Document Id"},"recipient_email":{"type":"string","title":"Recipient Email"},"form_type":{"type":"string","title":"Form Type"},"note":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Note"}},"type":"object","required":["document_id","recipient_email","form_type"],"title":"_EmailDocPayload"},"_EmergencyContactIn":{"properties":{"em_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Em Name","default":""},"em_relation":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Em Relation","default":""},"em_phone":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Em Phone","default":""},"em_email":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Em Email","default":""}},"type":"object","title":"_EmergencyContactIn"},"_EmploymentIn":{"properties":{"employer":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Employer","default":""},"job_title":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Job Title","default":""}},"type":"object","title":"_EmploymentIn"},"_EntityCreatePayload":{"properties":{"legal_name":{"type":"string","title":"Legal Name"},"entity_type":{"type":"string","title":"Entity Type","default":"llc"},"dba_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Dba Name"},"ein":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Ein"},"formation_state":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Formation State"},"notes":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Notes"}},"type":"object","required":["legal_name"],"title":"_EntityCreatePayload"},"_EntitySetActivePayload":{"properties":{"entity_id":{"type":"string","title":"Entity Id"}},"type":"object","required":["entity_id"],"title":"_EntitySetActivePayload"},"_EntityTransferPropertyPayload":{"properties":{"property_id":{"type":"string","title":"Property Id"},"target_entity_id":{"type":"string","title":"Target Entity Id"}},"type":"object","required":["property_id","target_entity_id"],"title":"_EntityTransferPropertyPayload"},"_EntityUpdatePayload":{"properties":{"legal_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Legal Name"},"entity_type":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Entity Type"},"dba_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Dba Name"},"ein":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Ein"},"formation_state":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Formation State"},"notes":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Notes"}},"type":"object","title":"_EntityUpdatePayload"},"_EvictionStartPayload":{"properties":{"lease_id":{"type":"string","title":"Lease Id"},"reason":{"type":"string","title":"Reason"},"state":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"State"},"amount_past_due_dollars":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Amount Past Due Dollars"},"notes":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Notes"},"landlord_contact":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Landlord Contact"}},"type":"object","required":["lease_id","reason"],"title":"_EvictionStartPayload"},"_HearingBody":{"properties":{"hearing_date":{"type":"string","title":"Hearing Date"}},"type":"object","required":["hearing_date"],"title":"_HearingBody"},"_ItemUpdatePayload":{"properties":{"status":{"type":"string","enum":["pass","fail","n_a","pending"],"title":"Status"},"notes":{"anyOf":[{"type":"string","maxLength":4000},{"type":"null"}],"title":"Notes"},"photo_url":{"anyOf":[{"type":"string","maxLength":2000},{"type":"null"}],"title":"Photo Url"}},"type":"object","required":["status"],"title":"_ItemUpdatePayload"},"_LanguagePref":{"properties":{"preferred_language":{"type":"string","title":"Preferred Language"}},"type":"object","required":["preferred_language"],"title":"_LanguagePref"},"_MaintenanceTriagePayload":{"properties":{"text":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Text"},"voice_transcript":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Voice Transcript"},"photo_url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Photo Url"},"zip_code":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Zip Code"},"ticket_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Ticket Id"}},"type":"object","title":"_MaintenanceTriagePayload"},"_OutcomeBody":{"properties":{"outcome":{"type":"string","title":"Outcome"},"notes":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Notes"}},"type":"object","required":["outcome"],"title":"_OutcomeBody"},"_OverrideBody":{"properties":{"action":{"type":"string","title":"Action","description":"approve | decline"},"reason":{"type":"string","maxLength":2000,"minLength":10,"title":"Reason"}},"type":"object","required":["action","reason"],"title":"_OverrideBody"},"_OwnerStatementAckPayload":{"properties":{"statement_id":{"type":"string","title":"Statement Id"}},"type":"object","required":["statement_id"],"title":"_OwnerStatementAckPayload"},"_PasswordChangeIn":{"properties":{"current_password":{"type":"string","title":"Current Password"},"new_password":{"type":"string","title":"New Password"},"confirm_password":{"type":"string","title":"Confirm Password"}},"type":"object","required":["current_password","new_password","confirm_password"],"title":"_PasswordChangeIn"},"_PersonalInfoIn":{"properties":{"first_name":{"type":"string","title":"First Name"},"last_name":{"type":"string","title":"Last Name"},"email":{"type":"string","title":"Email"},"phone":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Phone","default":""}},"type":"object","required":["first_name","last_name","email"],"title":"_PersonalInfoIn"},"_ReasonablenessPayload":{"properties":{"zip_code":{"type":"string","maxLength":10,"minLength":5,"title":"Zip Code"},"bedrooms":{"type":"integer","maximum":8.0,"minimum":0.0,"title":"Bedrooms"},"asking_rent":{"type":"string","maxLength":20,"title":"Asking Rent"},"unit_id":{"anyOf":[{"type":"string","maxLength":120},{"type":"null"}],"title":"Unit Id"}},"type":"object","required":["zip_code","bedrooms","asking_rent"],"title":"_ReasonablenessPayload"},"_RegisterPayload":{"properties":{"unit_id":{"type":"string","minLength":1,"title":"Unit Id"},"program_type":{"type":"string","enum":["pbra","section_202","section_811","rad","public_housing","voucher","hcv_pbv","lihtc","other"],"title":"Program Type"},"hud_contract_number":{"anyOf":[{"type":"string","maxLength":40},{"type":"null"}],"title":"Hud Contract Number"},"project_number":{"anyOf":[{"type":"string","maxLength":40},{"type":"null"}],"title":"Project Number"},"initial_effective_date":{"anyOf":[{"type":"string","maxLength":10},{"type":"null"}],"title":"Initial Effective Date"},"last_recert_date":{"anyOf":[{"type":"string","maxLength":10},{"type":"null"}],"title":"Last Recert Date"},"next_recert_due":{"anyOf":[{"type":"string","maxLength":10},{"type":"null"}],"title":"Next Recert Due"},"notes":{"anyOf":[{"type":"string","maxLength":2000},{"type":"null"}],"title":"Notes"},"voucher_type":{"anyOf":[{"type":"string","enum":["tenant_based","project_based"]},{"type":"null"}],"title":"Voucher Type"},"pha_id":{"anyOf":[{"type":"string","maxLength":120},{"type":"null"}],"title":"Pha Id"},"pha_name":{"anyOf":[{"type":"string","maxLength":120},{"type":"null"}],"title":"Pha Name"},"pha_contact_email":{"anyOf":[{"type":"string","maxLength":120},{"type":"null"}],"title":"Pha Contact Email"},"pha_caseworker_name":{"anyOf":[{"type":"string","maxLength":120},{"type":"null"}],"title":"Pha Caseworker Name"},"pha_caseworker_phone":{"anyOf":[{"type":"string","maxLength":40},{"type":"null"}],"title":"Pha Caseworker Phone"},"payment_standard":{"anyOf":[{"type":"string","maxLength":20},{"type":"null"}],"title":"Payment Standard"},"contract_rent":{"anyOf":[{"type":"string","maxLength":20},{"type":"null"}],"title":"Contract Rent"},"hap_amount":{"anyOf":[{"type":"string","maxLength":20},{"type":"null"}],"title":"Hap Amount"},"tenant_share_amount":{"anyOf":[{"type":"string","maxLength":20},{"type":"null"}],"title":"Tenant Share Amount"},"inspection_standard":{"anyOf":[{"type":"string","enum":["hqs","nspire"]},{"type":"null"}],"title":"Inspection Standard"},"last_inspection_date":{"anyOf":[{"type":"string","maxLength":10},{"type":"null"}],"title":"Last Inspection Date"},"last_inspection_result":{"anyOf":[{"type":"string","enum":["pass","fail","pending"]},{"type":"null"}],"title":"Last Inspection Result"},"next_inspection_due":{"anyOf":[{"type":"string","maxLength":10},{"type":"null"}],"title":"Next Inspection Due"}},"type":"object","required":["unit_id","program_type"],"title":"_RegisterPayload"},"_RequestUploadBody":{"properties":{"lease_id":{"type":"string","title":"Lease Id"},"note":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Note"}},"type":"object","required":["lease_id"],"title":"_RequestUploadBody"},"_RespondPayload":{"properties":{"decision":{"type":"string","enum":["approved","denied","verification_requested"],"title":"Decision"},"landlord_response":{"type":"string","maxLength":2000,"title":"Landlord Response","default":""}},"type":"object","required":["decision"],"title":"_RespondPayload"},"_ReviewActionBody":{"properties":{"notes":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Notes"},"reason":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Reason"}},"type":"object","title":"_ReviewActionBody"},"_ServeBody":{"properties":{"document_id":{"type":"string","title":"Document Id"},"served_via":{"type":"string","title":"Served Via","default":"personal"},"served_at":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Served At"}},"type":"object","required":["document_id"],"title":"_ServeBody"},"_SetupIntentRequest":{"properties":{"method_type":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Method Type","default":"card"}},"type":"object","title":"_SetupIntentRequest"},"_SitemapRouteRequest":{"properties":{"query":{"type":"string","maxLength":200,"minLength":1,"title":"Query"}},"type":"object","required":["query"],"title":"_SitemapRouteRequest"},"_StartPayload":{"properties":{"unit_id":{"type":"string","minLength":1,"title":"Unit Id"},"inspection_standard":{"type":"string","enum":["hqs","nspire"],"title":"Inspection Standard"},"content_version":{"anyOf":[{"type":"string","maxLength":20},{"type":"null"}],"title":"Content Version"}},"type":"object","required":["unit_id","inspection_standard"],"title":"_StartPayload"},"_TeamInvitePayload":{"properties":{"email":{"type":"string","title":"Email"},"role":{"type":"string","title":"Role"}},"type":"object","required":["email","role"],"title":"_TeamInvitePayload"},"_TeamRoleChangePayload":{"properties":{"role":{"type":"string","title":"Role"}},"type":"object","required":["role"],"title":"_TeamRoleChangePayload"},"_TenantDraftMessageRequest":{"properties":{"intent":{"type":"string","title":"Intent","default":"general"},"custom_note":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Custom Note"}},"type":"object","title":"_TenantDraftMessageRequest"},"_TenantSendMessageRequest":{"properties":{"subject":{"type":"string","title":"Subject"},"body":{"type":"string","title":"Body"}},"type":"object","required":["subject","body"],"title":"_TenantSendMessageRequest"},"_TrustAccountConfigurePayload":{"properties":{"stripe_account_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Stripe Account Id"},"bank_name":{"type":"string","title":"Bank Name"},"last_4_digits":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Last 4 Digits"},"bank_state":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Bank State"},"interest_bearing":{"type":"boolean","title":"Interest Bearing","default":false}},"type":"object","required":["bank_name"],"title":"_TrustAccountConfigurePayload"},"_TrustAccountCreatePayload":{"properties":{"state":{"type":"string","title":"State"},"account_type":{"type":"string","title":"Account Type"}},"type":"object","required":["state","account_type"],"title":"_TrustAccountCreatePayload"},"_TrustAccountDeactivatePayload":{"properties":{"confirm":{"type":"string","title":"Confirm"}},"type":"object","required":["confirm"],"title":"_TrustAccountDeactivatePayload"},"_TrustAccountPromoteLegacyPayload":{"properties":{"state":{"type":"string","title":"State"}},"type":"object","required":["state"],"title":"_TrustAccountPromoteLegacyPayload"},"_TrustMatchPayload":{"properties":{"journal_line_id":{"type":"string","title":"Journal Line Id"},"bank_txn_id":{"type":"string","title":"Bank Txn Id"}},"type":"object","required":["journal_line_id","bank_txn_id"],"title":"_TrustMatchPayload"},"_TrustUnmatchPayload":{"properties":{"journal_line_id":{"type":"string","title":"Journal Line Id"}},"type":"object","required":["journal_line_id"],"title":"_TrustUnmatchPayload"},"app__features__developer__api__public_api__PropertyCreate":{"properties":{"street_address":{"type":"string","maxLength":255,"minLength":1,"title":"Street Address"},"city":{"type":"string","maxLength":100,"minLength":1,"title":"City"},"state":{"type":"string","maxLength":2,"minLength":2,"title":"State"},"zip_code":{"type":"string","maxLength":10,"minLength":5,"title":"Zip Code"},"property_type":{"anyOf":[{"type":"string","maxLength":50},{"type":"null"}],"title":"Property Type"},"monthly_rent":{"anyOf":[{"type":"number","maximum":1000000.0,"minimum":0.0},{"type":"null"}],"title":"Monthly Rent"},"security_deposit":{"anyOf":[{"type":"number","maximum":1000000.0,"minimum":0.0},{"type":"null"}],"title":"Security Deposit"},"beds":{"anyOf":[{"type":"integer","maximum":50.0,"minimum":0.0},{"type":"null"}],"title":"Beds"},"baths":{"anyOf":[{"type":"number","maximum":50.0,"minimum":0.0},{"type":"null"}],"title":"Baths"}},"type":"object","required":["street_address","city","state","zip_code"],"title":"PropertyCreate"},"app__features__landlord_dashboard__api__hap_reconciliation___CreatePayload":{"properties":{"unit_id":{"type":"string","minLength":1,"title":"Unit Id"},"period_month":{"type":"string","maxLength":10,"title":"Period Month"},"expected_amount":{"type":"string","maxLength":20,"title":"Expected Amount"},"expected_date":{"anyOf":[{"type":"string","maxLength":10},{"type":"null"}],"title":"Expected Date"},"received_amount":{"anyOf":[{"type":"string","maxLength":20},{"type":"null"}],"title":"Received Amount"},"received_date":{"anyOf":[{"type":"string","maxLength":10},{"type":"null"}],"title":"Received Date"},"status":{"anyOf":[{"type":"string","enum":["expected","received","shortfall","late","skipped"]},{"type":"null"}],"title":"Status"},"pha_reference":{"anyOf":[{"type":"string","maxLength":100},{"type":"null"}],"title":"Pha Reference"},"notes":{"anyOf":[{"type":"string","maxLength":4000},{"type":"null"}],"title":"Notes"}},"type":"object","required":["unit_id","period_month","expected_amount"],"title":"_CreatePayload"},"app__features__landlord_dashboard__api__hap_reconciliation___UpdatePayload":{"properties":{"expected_amount":{"anyOf":[{"type":"string","maxLength":20},{"type":"null"}],"title":"Expected Amount"},"expected_date":{"anyOf":[{"type":"string","maxLength":10},{"type":"null"}],"title":"Expected Date"},"received_amount":{"anyOf":[{"type":"string","maxLength":20},{"type":"null"}],"title":"Received Amount"},"received_date":{"anyOf":[{"type":"string","maxLength":10},{"type":"null"}],"title":"Received Date"},"status":{"anyOf":[{"type":"string","enum":["expected","received","shortfall","late","skipped"]},{"type":"null"}],"title":"Status"},"pha_reference":{"anyOf":[{"type":"string","maxLength":100},{"type":"null"}],"title":"Pha Reference"},"notes":{"anyOf":[{"type":"string","maxLength":4000},{"type":"null"}],"title":"Notes"},"matched_ledger_id":{"anyOf":[{"type":"string","maxLength":120},{"type":"null"}],"title":"Matched Ledger Id"}},"type":"object","title":"_UpdatePayload"},"app__features__landlord_dashboard__api__hcv_lease_audit___AuditPayload":{"properties":{"lease_id":{"anyOf":[{"type":"string","maxLength":120},{"type":"null"}],"title":"Lease Id"},"html_or_text":{"anyOf":[{"type":"string","maxLength":400000},{"type":"null"}],"title":"Html Or Text"}},"type":"object","title":"_AuditPayload"},"app__features__landlord_dashboard__api__hud_subsidized___UpdatePayload":{"properties":{"program_type":{"anyOf":[{"type":"string","enum":["pbra","section_202","section_811","rad","public_housing","voucher","hcv_pbv","lihtc","other"]},{"type":"null"}],"title":"Program Type"},"hud_contract_number":{"anyOf":[{"type":"string","maxLength":40},{"type":"null"}],"title":"Hud Contract Number"},"project_number":{"anyOf":[{"type":"string","maxLength":40},{"type":"null"}],"title":"Project Number"},"initial_effective_date":{"anyOf":[{"type":"string","maxLength":10},{"type":"null"}],"title":"Initial Effective Date"},"last_recert_date":{"anyOf":[{"type":"string","maxLength":10},{"type":"null"}],"title":"Last Recert Date"},"next_recert_due":{"anyOf":[{"type":"string","maxLength":10},{"type":"null"}],"title":"Next Recert Due"},"notes":{"anyOf":[{"type":"string","maxLength":2000},{"type":"null"}],"title":"Notes"},"voucher_type":{"anyOf":[{"type":"string","enum":["tenant_based","project_based"]},{"type":"null"}],"title":"Voucher Type"},"pha_id":{"anyOf":[{"type":"string","maxLength":120},{"type":"null"}],"title":"Pha Id"},"pha_name":{"anyOf":[{"type":"string","maxLength":120},{"type":"null"}],"title":"Pha Name"},"pha_contact_email":{"anyOf":[{"type":"string","maxLength":120},{"type":"null"}],"title":"Pha Contact Email"},"pha_caseworker_name":{"anyOf":[{"type":"string","maxLength":120},{"type":"null"}],"title":"Pha Caseworker Name"},"pha_caseworker_phone":{"anyOf":[{"type":"string","maxLength":40},{"type":"null"}],"title":"Pha Caseworker Phone"},"payment_standard":{"anyOf":[{"type":"string","maxLength":20},{"type":"null"}],"title":"Payment Standard"},"contract_rent":{"anyOf":[{"type":"string","maxLength":20},{"type":"null"}],"title":"Contract Rent"},"hap_amount":{"anyOf":[{"type":"string","maxLength":20},{"type":"null"}],"title":"Hap Amount"},"tenant_share_amount":{"anyOf":[{"type":"string","maxLength":20},{"type":"null"}],"title":"Tenant Share Amount"},"inspection_standard":{"anyOf":[{"type":"string","enum":["hqs","nspire"]},{"type":"null"}],"title":"Inspection Standard"},"last_inspection_date":{"anyOf":[{"type":"string","maxLength":10},{"type":"null"}],"title":"Last Inspection Date"},"last_inspection_result":{"anyOf":[{"type":"string","enum":["pass","fail","pending"]},{"type":"null"}],"title":"Last Inspection Result"},"next_inspection_due":{"anyOf":[{"type":"string","maxLength":10},{"type":"null"}],"title":"Next Inspection Due"}},"type":"object","title":"_UpdatePayload"},"app__features__landlord_dashboard__api__pha_directory___CreatePayload":{"properties":{"name":{"type":"string","maxLength":200,"minLength":2,"title":"Name"},"state":{"type":"string","maxLength":4,"minLength":2,"title":"State"},"hud_code":{"anyOf":[{"type":"string","maxLength":10},{"type":"null"}],"title":"Hud Code"},"short_name":{"anyOf":[{"type":"string","maxLength":40},{"type":"null"}],"title":"Short Name"},"city":{"anyOf":[{"type":"string","maxLength":120},{"type":"null"}],"title":"City"},"county":{"anyOf":[{"type":"string","maxLength":120},{"type":"null"}],"title":"County"},"phone":{"anyOf":[{"type":"string","maxLength":40},{"type":"null"}],"title":"Phone"},"fax":{"anyOf":[{"type":"string","maxLength":40},{"type":"null"}],"title":"Fax"},"email":{"anyOf":[{"type":"string","maxLength":120},{"type":"null"}],"title":"Email"},"website":{"anyOf":[{"type":"string","maxLength":2000},{"type":"null"}],"title":"Website"},"landlord_portal_url":{"anyOf":[{"type":"string","maxLength":2000},{"type":"null"}],"title":"Landlord Portal Url"},"office_address":{"anyOf":[{"type":"string","maxLength":300},{"type":"null"}],"title":"Office Address"},"payment_standard_pct":{"anyOf":[{"type":"integer","maximum":130.0,"minimum":80.0},{"type":"null"}],"title":"Payment Standard Pct"},"inspection_cadence":{"anyOf":[{"type":"string","enum":["annual","biennial"]},{"type":"null"}],"title":"Inspection Cadence"},"inspection_standard":{"anyOf":[{"type":"string","enum":["hqs","nspire"]},{"type":"null"}],"title":"Inspection Standard"},"hap_payment_day":{"anyOf":[{"type":"integer","maximum":28.0,"minimum":1.0},{"type":"null"}],"title":"Hap Payment Day"},"notes":{"anyOf":[{"type":"string","maxLength":4000},{"type":"null"}],"title":"Notes"}},"type":"object","required":["name","state"],"title":"_CreatePayload"},"app__features__landlord_dashboard__api__pha_directory___UpdatePayload":{"properties":{"name":{"anyOf":[{"type":"string","maxLength":200,"minLength":2},{"type":"null"}],"title":"Name"},"state":{"anyOf":[{"type":"string","maxLength":4,"minLength":2},{"type":"null"}],"title":"State"},"hud_code":{"anyOf":[{"type":"string","maxLength":10},{"type":"null"}],"title":"Hud Code"},"short_name":{"anyOf":[{"type":"string","maxLength":40},{"type":"null"}],"title":"Short Name"},"city":{"anyOf":[{"type":"string","maxLength":120},{"type":"null"}],"title":"City"},"county":{"anyOf":[{"type":"string","maxLength":120},{"type":"null"}],"title":"County"},"phone":{"anyOf":[{"type":"string","maxLength":40},{"type":"null"}],"title":"Phone"},"fax":{"anyOf":[{"type":"string","maxLength":40},{"type":"null"}],"title":"Fax"},"email":{"anyOf":[{"type":"string","maxLength":120},{"type":"null"}],"title":"Email"},"website":{"anyOf":[{"type":"string","maxLength":2000},{"type":"null"}],"title":"Website"},"landlord_portal_url":{"anyOf":[{"type":"string","maxLength":2000},{"type":"null"}],"title":"Landlord Portal Url"},"office_address":{"anyOf":[{"type":"string","maxLength":300},{"type":"null"}],"title":"Office Address"},"payment_standard_pct":{"anyOf":[{"type":"integer","maximum":130.0,"minimum":80.0},{"type":"null"}],"title":"Payment Standard Pct"},"inspection_cadence":{"anyOf":[{"type":"string","enum":["annual","biennial"]},{"type":"null"}],"title":"Inspection Cadence"},"inspection_standard":{"anyOf":[{"type":"string","enum":["hqs","nspire"]},{"type":"null"}],"title":"Inspection Standard"},"hap_payment_day":{"anyOf":[{"type":"integer","maximum":28.0,"minimum":1.0},{"type":"null"}],"title":"Hap Payment Day"},"notes":{"anyOf":[{"type":"string","maxLength":4000},{"type":"null"}],"title":"Notes"}},"type":"object","title":"_UpdatePayload"},"app__features__landlord_dashboard__api__soi_guardrails___AuditPayload":{"properties":{"html_or_text":{"type":"string","maxLength":400000,"minLength":1,"title":"Html Or Text"},"state":{"anyOf":[{"type":"string","maxLength":4},{"type":"null"}],"title":"State"},"city":{"anyOf":[{"type":"string","maxLength":120},{"type":"null"}],"title":"City"}},"type":"object","required":["html_or_text"],"title":"_AuditPayload"},"app__features__tenants__api__accommodation___SubmitPayload":{"properties":{"lease_id":{"type":"string","minLength":1,"title":"Lease Id"},"request_type":{"type":"string","enum":["service_animal","emotional_support_animal","physical_modification","policy_change","other"],"title":"Request Type"},"request_description":{"type":"string","maxLength":2000,"minLength":5,"title":"Request Description"},"animal_species":{"anyOf":[{"type":"string","maxLength":80},{"type":"null"}],"title":"Animal Species"},"animal_name":{"anyOf":[{"type":"string","maxLength":80},{"type":"null"}],"title":"Animal Name"}},"type":"object","required":["lease_id","request_type","request_description"],"title":"_SubmitPayload"},"app__features__tenants__api__vawa_submission___SubmitPayload":{"properties":{"lease_id":{"type":"string","minLength":1,"title":"Lease Id"},"landlord_request_date":{"anyOf":[{"type":"string","maxLength":10},{"type":"null"}],"title":"Landlord Request Date"},"victim_name":{"type":"string","maxLength":200,"minLength":1,"title":"Victim Name"},"submitter_name":{"anyOf":[{"type":"string","maxLength":200},{"type":"null"}],"title":"Submitter Name"},"other_household_members":{"anyOf":[{"type":"string","maxLength":2000},{"type":"null"}],"title":"Other Household Members"},"accused_name":{"anyOf":[{"type":"string","maxLength":200},{"type":"null"}],"title":"Accused Name"},"accused_relationship":{"anyOf":[{"type":"string","maxLength":200},{"type":"null"}],"title":"Accused Relationship"},"incident_dates":{"anyOf":[{"type":"string","maxLength":400},{"type":"null"}],"title":"Incident Dates"},"incident_description":{"type":"string","maxLength":4000,"minLength":1,"title":"Incident Description"},"signature_name":{"type":"string","maxLength":200,"minLength":1,"title":"Signature Name"},"signature_date":{"anyOf":[{"type":"string","maxLength":10},{"type":"null"}],"title":"Signature Date"}},"type":"object","required":["lease_id","victim_name","incident_description","signature_name"],"title":"_SubmitPayload"},"app__main__ChatRequest":{"properties":{"message":{"type":"string","title":"Message"}},"type":"object","required":["message"],"title":"ChatRequest"},"features__communications__api__chat__MessageCreate":{"properties":{"receiver_id":{"type":"string","title":"Receiver Id"},"content":{"type":"string","title":"Content"},"original_text":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Original Text"},"translated_text":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Translated Text"},"detected_language":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Detected Language"},"translation_error":{"type":"boolean","title":"Translation Error","default":false}},"type":"object","required":["receiver_id","content"],"title":"MessageCreate"},"features__communications__api__chat__MessageResponse":{"properties":{"id":{"type":"string","title":"Id"},"sender_id":{"type":"string","title":"Sender Id"},"receiver_id":{"type":"string","title":"Receiver Id"},"content":{"type":"string","title":"Content"},"original_text":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Original Text"},"translated_text":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Translated Text"},"detected_language":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Detected Language"},"translation_error":{"type":"boolean","title":"Translation Error","default":false},"attachment_url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Attachment Url"},"is_read":{"type":"boolean","title":"Is Read"},"is_deleted":{"type":"boolean","title":"Is Deleted"},"is_pinned":{"type":"boolean","title":"Is Pinned"},"created_at":{"type":"string","format":"date-time","title":"Created At"}},"type":"object","required":["id","sender_id","receiver_id","content","is_read","is_deleted","is_pinned","created_at"],"title":"MessageResponse"},"features__communications__api__messages__MessageCreate":{"properties":{"receiver_id":{"type":"string","title":"Receiver Id"},"content":{"type":"string","title":"Content"},"attachment_url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Attachment Url"},"original_text":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Original Text"},"translated_text":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Translated Text"},"detected_language":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Detected Language"},"translation_error":{"type":"boolean","title":"Translation Error","default":false}},"type":"object","required":["receiver_id","content"],"title":"MessageCreate"},"features__communications__api__messages__MessageResponse":{"properties":{"id":{"type":"string","title":"Id"},"sender_id":{"type":"string","title":"Sender Id"},"receiver_id":{"type":"string","title":"Receiver Id"},"content":{"type":"string","title":"Content"},"original_text":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Original Text"},"translated_text":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Translated Text"},"detected_language":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Detected Language"},"translation_error":{"type":"boolean","title":"Translation Error","default":false},"attachment_url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Attachment Url"},"is_read":{"type":"boolean","title":"Is Read"},"is_deleted":{"type":"boolean","title":"Is Deleted"},"is_pinned":{"type":"boolean","title":"Is Pinned"},"created_at":{"type":"string","format":"date-time","title":"Created At"},"ai_category":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Ai Category"},"ai_urgency":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Ai Urgency"},"ai_safety_flag":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Ai Safety Flag"},"ai_classified_summary":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Ai Classified Summary"},"ai_classified_source":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Ai Classified Source"},"ai_suggested_reply":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Ai Suggested Reply"},"ai_suggested_assignee_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Ai Suggested Assignee Id"}},"type":"object","required":["id","sender_id","receiver_id","content","is_read","is_deleted","is_pinned","created_at"],"title":"MessageResponse"},"features__financial__api__payments__VendorPaymentRequest":{"properties":{"vendor_id":{"type":"string","title":"Vendor Id"},"vendor_stripe_account_id":{"type":"string","title":"Vendor Stripe Account Id"},"amount_cents":{"type":"integer","title":"Amount Cents"},"invoice_id":{"type":"string","title":"Invoice Id"},"payment_method":{"type":"string","title":"Payment Method","default":"ach"},"typed_confirmation":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Typed Confirmation"}},"type":"object","required":["vendor_id","vendor_stripe_account_id","amount_cents","invoice_id"],"title":"VendorPaymentRequest"},"features__landlord_dashboard__api__landlord__ChatRequest":{"properties":{"message":{"type":"string","title":"Message"}},"type":"object","required":["message"],"title":"ChatRequest"},"features__landlord_dashboard__api__migration__InviteRequest":{"properties":{"user_ids":{"items":{"type":"string"},"type":"array","title":"User Ids"}},"type":"object","required":["user_ids"],"title":"InviteRequest"},"features__landlord_dashboard__api__vault__ChatRequest":{"properties":{"question":{"type":"string","title":"Question"}},"type":"object","required":["question"],"title":"ChatRequest"},"features__maintenance__api__vendor_portal__VendorPaymentRequest":{"properties":{"vendor_id":{"type":"string","title":"Vendor Id"},"ticket_id":{"type":"string","title":"Ticket Id"},"amount_cents":{"type":"integer","title":"Amount Cents"},"typed_confirmation":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Typed Confirmation"}},"type":"object","required":["vendor_id","ticket_id","amount_cents"],"title":"VendorPaymentRequest"},"features__properties__api__properties__PropertyCreate":{"properties":{"street_address":{"type":"string","title":"Street Address"},"city":{"type":"string","title":"City"},"state":{"type":"string","title":"State"},"zip_code":{"type":"string","title":"Zip Code"},"property_type":{"type":"string","title":"Property Type"},"num_units":{"type":"integer","title":"Num Units"},"beds":{"type":"integer","title":"Beds"},"baths":{"type":"number","title":"Baths"},"rent_amount":{"type":"number","title":"Rent Amount"},"security_deposit":{"type":"number","title":"Security Deposit"},"marketing_description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Marketing Description"},"sqft":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Sqft"},"year_built":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Year Built"},"available_date":{"anyOf":[{"type":"string","format":"date"},{"type":"null"}],"title":"Available Date"},"pet_policy":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Pet Policy","default":"negotiable"},"laundry_type":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Laundry Type"},"parking_type":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Parking Type"},"amenities":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Amenities","default":[]},"has_basement":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Has Basement","default":false},"lease_terms_offered":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Lease Terms Offered"},"application_fee":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Application Fee","default":0.0},"lease_admin_fee":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Lease Admin Fee","default":0.0},"has_known_lead":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Has Known Lead","default":false},"lead_known_description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Lead Known Description"},"lead_reports_available":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Lead Reports Available","default":false},"lead_records_description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Lead Records Description"},"agent_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Agent Name"},"agent_role":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Agent Role"},"agent_email":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Agent Email"},"units":{"anyOf":[{"items":{"$ref":"#/components/schemas/UnitEditPayload"},"type":"array"},{"type":"null"}],"title":"Units"}},"type":"object","required":["street_address","city","state","zip_code","property_type","num_units","beds","baths","rent_amount","security_deposit"],"title":"PropertyCreate"},"features__public_website__api__referrals__InviteRequest":{"properties":{"email":{"type":"string","format":"email","title":"Email"},"resend":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Resend","default":false}},"type":"object","required":["email"],"title":"InviteRequest"}}}}