{"components":{"responses":{"BadRequest":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/Error"}}},"description":"Bad Request"},"Conflict":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/Errors"}}},"description":"Conflict"},"NotFound":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/Error"}}},"description":"Resource not found"},"UnprocessableEntity":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/Errors"}}},"description":"Unprocessable Entity"}},"schemas":{"Address":{"properties":{"city":{"maxLength":50,"minLength":0,"nullable":true,"type":"string"},"line_1":{"maxLength":50,"minLength":0,"nullable":true,"type":"string"},"line_2":{"maxLength":50,"minLength":0,"nullable":true,"type":"string"},"line_3":{"maxLength":50,"minLength":0,"nullable":true,"type":"string"},"postal_code":{"maxLength":10,"minLength":0,"nullable":true,"type":"string"}},"type":"object"},"Beneficiary":{"allOf":[{"$ref":"#\/components\/schemas\/BeneficiaryNoId"},{"properties":{"id":{"maxLength":15,"minLength":1,"type":"string"},"properties_count":{"minimum":0,"type":"integer"}},"type":"object"}]},"BeneficiaryNoId":{"properties":{"account_no":{"example":"0000","maxLength":4,"minLength":4,"nullable":true,"type":"string"},"address":{"$ref":"#\/components\/schemas\/Address"},"email":{"format":"email","maxLength":100,"minLength":3,"nullable":true,"type":"string"},"name":{"maxLength":100,"minLength":1,"nullable":true,"type":"string"}},"required":["name"],"type":"object"},"BeneficiaryWithPortfolio":{"allOf":[{"$ref":"#\/components\/schemas\/Beneficiary"},{"properties":{"portfolio":{"$ref":"#\/components\/schemas\/Portfolio"}},"type":"object"}]},"DefaultResponse":{"properties":{"errors":{"items":{"properties":{"message":{"type":"string"},"path":{"type":"string"}},"required":["message"],"type":"object"},"type":"array"}},"required":["errors"],"type":"object"},"Error":{"properties":{"error":{"additionalProperties":{"items":{"type":"string"},"type":"array"},"type":"object"}},"required":["error"],"type":"object"},"Errors":{"properties":{"errors":{"items":{"properties":{"message":{"type":"string"},"path":{"type":"string"}},"type":"object"},"type":"array"}},"required":["errors"],"type":"object"},"Invite":{"allOf":[{"$ref":"#\/components\/schemas\/InviteInputWithEmail"},{"properties":{"auto_import_to":{"format":"uuid","nullable":true,"type":"string"},"id":{"format":"uuid","type":"string"},"status":{"enum":["pending","accepted","declined"],"type":"string"}},"type":"object"}]},"InviteInput":{"properties":{"business_name":{"maxLength":100,"minLength":1,"nullable":true,"type":"string"},"display_name":{"maxLength":100,"minLength":1,"nullable":true,"type":"string"},"first_name":{"maxLength":50,"minLength":1,"nullable":true,"type":"string"},"last_name":{"maxLength":50,"minLength":1,"nullable":true,"type":"string"}},"type":"object"},"InviteInputWithEmail":{"allOf":[{"$ref":"#\/components\/schemas\/InviteInput"},{"properties":{"email":{"format":"email","maxLength":100,"minLength":1,"type":"string"}},"required":["email"],"type":"object"}]},"Owner":{"allOf":[{"$ref":"#\/components\/schemas\/OwnerInput"},{"properties":{"id":{"format":"uuid","type":"string"}},"type":"object"}],"required":["id"]},"OwnerInput":{"anyOf":[{"required":["email","display_name"]},{"required":["email","business_name"]},{"required":["email","first_name"]}],"properties":{"business_name":{"maxLength":100,"minLength":1,"nullable":true,"type":"string"},"display_name":{"maxLength":100,"minLength":1,"nullable":true,"type":"string"},"email":{"format":"email","maxLength":100,"minLength":3,"type":"string"},"first_name":{"maxLength":50,"minLength":1,"nullable":true,"type":"string"},"last_name":{"maxLength":50,"minLength":1,"nullable":true,"type":"string"}},"type":"object"},"Pagination":{"properties":{"page":{"minimum":0,"type":"integer"},"rows":{"minimum":0,"type":"integer"},"total_pages":{"minimum":0,"type":"integer"},"total_rows":{"minimum":0,"type":"integer"}},"type":"object"},"Portfolio":{"allOf":[{"$ref":"#\/components\/schemas\/PortfolioInput"},{"properties":{"beneficiaries_count":{"minimum":0,"type":"integer"},"id":{"format":"uuid","type":"string"},"owners_count":{"minimum":0,"type":"integer"}},"required":["id"],"type":"object"}]},"PortfolioInput":{"properties":{"name":{"maxLength":120,"minLength":1,"type":"string"}},"required":["name"],"type":"object"},"PortfolioInputWithOwnersAndBeneficiaries":{"allOf":[{"$ref":"#\/components\/schemas\/PortfolioInput"},{"properties":{"beneficiaries":{"items":{"maxLength":15,"minLength":1,"type":"string"},"type":"array"},"owners":{"items":{"format":"uuid","type":"string"},"type":"array"}},"type":"object"}]},"PortfoliosSummary":{"properties":{"group":{"minimum":0,"type":"integer"},"not_visible":{"minimum":0,"type":"integer"},"personal":{"minimum":0,"type":"integer"},"total":{"minimum":0,"type":"integer"},"visible":{"minimum":0,"type":"integer"}},"required":["visible","not_visible","personal","group","total"],"type":"object"},"Property":{"allOf":[{"$ref":"#\/components\/schemas\/PropertyNoId"},{"properties":{"id":{"maxLength":15,"minLength":1,"type":"string"}},"type":"object"}]},"PropertyNoId":{"properties":{"address":{"$ref":"#\/components\/schemas\/Address"},"name":{"maxLength":100,"minLength":1,"nullable":true,"type":"string"}},"type":"object"}},"securitySchemes":{"apiKeyAuth":{"in":"header","name":"X-API-Key","type":"apiKey"},"bearerAuth":{"bearerFormat":"JWT","scheme":"bearer","type":"http"}}},"info":{"license":{"name":"PayProp Owner Management API ToS","url":"https:\/\/__HOST__\/api\/docs\/agency#section\/7.-Terms-of-Use"},"title":"Owner Management API","version":"0.0.1"},"openapi":"3.0.4","paths":{"\/beneficiaries":{"get":{"operationId":"listbeneficiaries","parameters":[{"description":"The fields it should search by. If not defined it will search (if search_value is defined) on both email and name","in":"query","name":"search_by","required":false,"schema":{"enum":["email","name"],"type":"string"}},{"description":"Term to be searched as substring","in":"query","name":"search_value","required":false,"schema":{"type":"string"}},{"description":"True to filter beneficiaries associated to a portifolio, false to filter the ones not associated to a portfolio","in":"query","name":"on_portfolio","required":false,"schema":{"type":"boolean"}}],"responses":{"200":{"content":{"application\/json":{"schema":{"properties":{"items":{"items":{"$ref":"#\/components\/schemas\/BeneficiaryWithPortfolio"},"type":"array"},"pagination":{"$ref":"#\/components\/schemas\/Pagination"}},"type":"object"}}},"description":"List of beneficiaries"},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"$ref":"#\/components\/responses\/NotFound"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"security":[{"bearerAuth":[]}],"summary":"List beneficiaries","x-mojo-name":"list_beneficiaries","x-mojo-to":"beneficiary#list"}},"\/beneficiary\/{beneficiary_id}":{"get":{"operationId":"getbeneficiary","responses":{"200":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/BeneficiaryWithPortfolio"}}},"description":"Beneficiary details"},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"$ref":"#\/components\/responses\/NotFound"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"security":[{"bearerAuth":[]}],"summary":"Get beneficiary","x-mojo-name":"get_beneficiary","x-mojo-to":"beneficiary#get"},"parameters":[{"in":"path","name":"beneficiary_id","required":true,"schema":{"maxLength":15,"minLength":1,"type":"string"}}],"put":{"operationId":"createbeneficiary","requestBody":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/BeneficiaryNoId"}}},"required":true},"responses":{"201":{"description":"Beneficiary added","headers":{"Location":{"content":{"text\/plain":{"schema":{"type":"string"}}}}}},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"$ref":"#\/components\/responses\/NotFound"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"security":[{"bearerAuth":[]}],"summary":"Create beneficiary","x-mojo-name":"create_beneficiary","x-mojo-to":"beneficiary#create"}},"\/beneficiary\/{beneficiary_id}\/properties":{"get":{"operationId":"getbeneficiaryproperties","responses":{"200":{"content":{"application\/json":{"schema":{"properties":{"items":{"items":{"$ref":"#\/components\/schemas\/Property"},"type":"array"},"pagination":{"$ref":"#\/components\/schemas\/Pagination"}},"type":"object"}}},"description":"List of beneficiaries"},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"$ref":"#\/components\/responses\/NotFound"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"security":[{"bearerAuth":[]}],"summary":"Get beneficiary's properties","x-mojo-name":"get_beneficiary_properties","x-mojo-to":"beneficiary#properties"},"parameters":[{"in":"path","name":"beneficiary_id","required":true,"schema":{"maxLength":15,"minLength":1,"type":"string"}}],"put":{"operationId":"createbeneficiaryproperties","requestBody":{"content":{"application\/json":{"schema":{"items":{"maxLength":15,"minLength":1,"type":"string"},"type":"array"}}},"required":true},"responses":{"201":{"description":"Properties added","headers":{"Location":{"content":{"text\/plain":{"schema":{"type":"string"}}}}}},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"$ref":"#\/components\/responses\/NotFound"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"security":[{"bearerAuth":[]}],"summary":"Create beneficiary's properties","x-mojo-name":"create_beneficiary_properties","x-mojo-to":"beneficiary#link_properties"}},"\/internal\/owner\/invitation-status\/{owner_status}":{"parameters":[{"in":"path","name":"owner_status","required":true,"schema":{"enum":["pending","accepted","declined"],"type":"string"}}],"put":{"operationId":"changeOwnerStatus","parameters":[{"description":"cognito's sub","in":"query","name":"sub","required":false,"schema":{"type":"string"}},{"description":"owner's external id","in":"query","name":"external_id","required":false,"schema":{"format":"uuid","type":"string"}}],"responses":{"200":{"content":{"application\/json":{"schema":{"properties":{"invites_updated":{"minimum":0,"type":"integer"}},"type":"object"}}},"description":"Change status"},"400":{"$ref":"#\/components\/responses\/BadRequest"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"$ref":"#\/components\/responses\/NotFound"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"security":[{"apiKeyAuth":[]}],"summary":"Change owner status","tags":["internal"],"x-mojo-name":"change_owner_status","x-mojo-to":"owner#status_change"}},"\/invite":{"post":{"operationId":"createInvite","requestBody":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/InviteInputWithEmail"}}},"required":true},"responses":{"201":{"description":"Invited","headers":{"Location":{"content":{"application\/json":{"schema":{"type":"string"}}}}}},"400":{"$ref":"#\/components\/responses\/BadRequest"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"409":{"$ref":"#\/components\/responses\/Conflict"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"security":[{"bearerAuth":[]}],"summary":"Create invite","x-mojo-name":"create_invite","x-mojo-to":"invite#create"}},"\/invite\/{invite_id}":{"get":{"operationId":"getInvite","responses":{"200":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/Invite"}}},"description":"Invite details"},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"$ref":"#\/components\/responses\/NotFound"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"security":[{"bearerAuth":[]}],"summary":"Get invite","x-mojo-name":"get_invite","x-mojo-to":"invite#get"},"parameters":[{"in":"path","name":"invite_id","required":true,"schema":{"format":"uuid","type":"string"}}],"put":{"operationId":"updateInvite","requestBody":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/InviteInput"}}},"required":true},"responses":{"200":{"description":"Invite updated","headers":{"Location":{"content":{"application\/json":{"schema":{"type":"string"}}}}}},"400":{"$ref":"#\/components\/responses\/BadRequest"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"$ref":"#\/components\/responses\/NotFound"},"409":{"$ref":"#\/components\/responses\/Conflict"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"security":[{"bearerAuth":[]}],"summary":"Update invite","x-mojo-name":"update_invite","x-mojo-to":"invite#update"}},"\/invite\/{invite_id}\/auto_import_to":{"delete":{"operationId":"deleteInviteAutoImport","responses":{"200":{"content":{"application\/json":{"schema":{"format":"uuid","nullable":true,"type":"string"}}},"description":"Remove auto import"},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"$ref":"#\/components\/responses\/NotFound"},"422":{"$ref":"#\/components\/responses\/UnprocessableEntity"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"security":[{"bearerAuth":[]}],"summary":"Delete invite's auto import","x-mojo-name":"unset_invite_auto_import","x-mojo-to":"invite#unset_auto_import"},"get":{"operationId":"getInviteAutoImport","responses":{"200":{"content":{"application\/json":{"schema":{"format":"uuid","nullable":true,"type":"string"}}},"description":"Invite auto import"},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"$ref":"#\/components\/responses\/NotFound"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"security":[{"bearerAuth":[]}],"summary":"Get invite's auto import","x-mojo-name":"get_invite_auto_import","x-mojo-to":"invite#get_auto_import"},"parameters":[{"in":"path","name":"invite_id","required":true,"schema":{"format":"uuid","type":"string"}}],"put":{"operationId":"setInviteAutoImport","requestBody":{"content":{"application\/json":{"schema":{"format":"uuid","type":"string"}}},"required":true},"responses":{"200":{"content":{"application\/json":{"schema":{"format":"uuid","nullable":true,"type":"string"}}},"description":"Invite auto import"},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"$ref":"#\/components\/responses\/NotFound"},"422":{"$ref":"#\/components\/responses\/UnprocessableEntity"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"security":[{"bearerAuth":[]}],"summary":"Set invite's auto import","x-mojo-name":"set_invite_auto_import","x-mojo-to":"invite#set_auto_import"}},"\/invite\/{invite_id}\/portfolios":{"get":{"operationId":"getInvitePortfolios","responses":{"200":{"content":{"application\/json":{"schema":{"properties":{"items":{"items":{"$ref":"#\/components\/schemas\/Portfolio"},"type":"array"},"pagination":{"$ref":"#\/components\/schemas\/Pagination"}},"type":"object"}}},"description":"List of invite's portfolios"},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"$ref":"#\/components\/responses\/NotFound"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"security":[{"bearerAuth":[]}],"summary":"Get invite portfolios","x-mojo-name":"get_invite_portfolios","x-mojo-to":"invite#portfolios"},"parameters":[{"in":"path","name":"invite_id","required":true,"schema":{"format":"uuid","type":"string"}}]},"\/invite\/{invite_id}\/portfolios_summary":{"get":{"operationId":"getInvitePortfoliosSummary","responses":{"200":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/PortfoliosSummary"}}},"description":"Invite portfolios summary"},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"$ref":"#\/components\/responses\/NotFound"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"security":[{"bearerAuth":[]}],"summary":"Get invite portfolios summary","x-mojo-name":"get_invite_portfolios_summary","x-mojo-to":"invite#portfolios_summary"},"parameters":[{"in":"path","name":"invite_id","required":true,"schema":{"format":"uuid","type":"string"}}]},"\/invites":{"get":{"operationId":"listInvites","parameters":[{"description":"If true, the endpoint will also return summary counters.","in":"query","name":"portfolios_summary","required":false,"schema":{"type":"boolean"}},{"description":"The fields it should search by. If not defined it will search (if search_value is defined) on both email and display_name","in":"query","name":"search_by","required":false,"schema":{"enum":["email","display_name","business_name","first_name","last_name"],"type":"string"}},{"description":"Term to be searched as substring","in":"query","name":"search_value","required":false,"schema":{"type":"string"}},{"description":"Status used to filter invites","in":"query","name":"status","required":false,"schema":{"enum":["pending","accepted","declined"],"type":"string"}}],"responses":{"200":{"content":{"application\/json":{"schema":{"properties":{"items":{"items":{"$ref":"#\/components\/schemas\/Invite"},"type":"array"},"pagination":{"$ref":"#\/components\/schemas\/Pagination"}},"type":"object"}}},"description":"List of invites"},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"$ref":"#\/components\/responses\/NotFound"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"security":[{"bearerAuth":[]}],"summary":"List invites","x-mojo-name":"list_invites","x-mojo-to":"invite#list"}},"\/invites\/count":{"get":{"operationId":"countInvites","responses":{"200":{"content":{"application\/json":{"schema":{"example":{"accepted":3,"declined":2,"pending":5,"total":10},"properties":{"accepted":{"minimum":0,"type":"integer"},"declined":{"minimum":0,"type":"integer"},"pending":{"minimum":0,"type":"integer"},"total":{"minimum":0,"type":"integer"}},"type":"object"}}},"description":"Number of invites"},"400":{"$ref":"#\/components\/responses\/BadRequest"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"security":[{"bearerAuth":[]}],"summary":"Count invites","x-mojo-name":"count_invite","x-mojo-to":"invite#count"}},"\/owner":{"post":{"operationId":"createOwner","requestBody":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/OwnerInput"}}},"required":true},"responses":{"201":{"description":"Owner created","headers":{"Location":{"content":{"text\/plain":{"schema":{"type":"string"}}}}}},"400":{"$ref":"#\/components\/responses\/BadRequest"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"409":{"$ref":"#\/components\/responses\/Conflict"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"security":[{"bearerAuth":[]}],"summary":"Create owner","x-mojo-name":"create_owner","x-mojo-to":"owner#create"}},"\/owner\/{owner_id}":{"get":{"operationId":"getOwner","responses":{"200":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/Owner"}}},"description":"Owner details"},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"$ref":"#\/components\/responses\/NotFound"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"security":[{"bearerAuth":[]}],"summary":"Get owner","x-mojo-name":"get_owner","x-mojo-to":"owner#get"},"parameters":[{"in":"path","name":"owner_id","required":true,"schema":{"format":"uuid","type":"string"}}],"put":{"operationId":"updateOwner","requestBody":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/OwnerInput"}}},"required":true},"responses":{"200":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/Owner"}}},"description":"Owner details"},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"$ref":"#\/components\/responses\/NotFound"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"security":[{"bearerAuth":[]}],"summary":"Update owner","x-mojo-name":"update_owner","x-mojo-to":"owner#update"}},"\/portfolio":{"post":{"operationId":"createPortfolio","requestBody":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/PortfolioInputWithOwnersAndBeneficiaries"}}},"required":true},"responses":{"201":{"description":"Owner added","headers":{"Location":{"content":{"text\/plain":{"schema":{"type":"string"}}}}}},"400":{"$ref":"#\/components\/responses\/BadRequest"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"$ref":"#\/components\/responses\/NotFound"},"422":{"$ref":"#\/components\/responses\/UnprocessableEntity"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"security":[{"bearerAuth":[]}],"summary":"Create portfolio","x-mojo-name":"create_portfolio","x-mojo-to":"portfolio#create"}},"\/portfolio\/{portfolio_id}":{"delete":{"operationId":"deletePortfolio","responses":{"201":{"description":"Portfolio deleted"},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"$ref":"#\/components\/responses\/NotFound"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"security":[{"bearerAuth":[]}],"summary":"Delete portfolio","x-mojo-name":"delete_portfolio","x-mojo-to":"portfolio#delete"},"get":{"operationId":"getPortfolio","responses":{"200":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/Portfolio"}}},"description":"Portfolio details"},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"$ref":"#\/components\/responses\/NotFound"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"security":[{"bearerAuth":[]}],"summary":"Get portfolio","x-mojo-name":"get_portfolio","x-mojo-to":"portfolio#get"},"parameters":[{"in":"path","name":"portfolio_id","required":true,"schema":{"format":"uuid","type":"string"}}],"put":{"operationId":"portfolioUpdate","requestBody":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/PortfolioInputWithOwnersAndBeneficiaries"}}},"required":true},"responses":{"201":{"description":"Portfolio updated","headers":{"Location":{"content":{"text\/plain":{"schema":{"type":"string"}}}}}},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"$ref":"#\/components\/responses\/NotFound"},"422":{"$ref":"#\/components\/responses\/UnprocessableEntity"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"security":[{"bearerAuth":[]}],"summary":"Update portfolio","x-mojo-name":"portfolio_update","x-mojo-to":"portfolio#update"}},"\/portfolio\/{portfolio_id}\/beneficiaries":{"delete":{"operationId":"portfolioRemoveBeneficiaries","requestBody":{"content":{"application\/json":{"schema":{"anyOf":[{"items":{"maxLength":15,"minLength":1,"type":"string"},"type":"array"},{"maxLength":15,"minLength":1,"type":"string"}]}}},"required":true},"responses":{"201":{"description":"Owner added","headers":{"Location":{"content":{"text\/plain":{"schema":{"type":"string"}}}}}},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"$ref":"#\/components\/responses\/NotFound"},"422":{"$ref":"#\/components\/responses\/UnprocessableEntity"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"security":[{"bearerAuth":[]}],"summary":"Remove beneficiaries from portfolio","x-mojo-name":"portfolio_remove_beneficiaries","x-mojo-to":"portfolio#remove_beneficiaries"},"get":{"operationId":"getPortfolioBeneficiaries","responses":{"200":{"content":{"application\/json":{"schema":{"properties":{"items":{"items":{"$ref":"#\/components\/schemas\/Owner"},"type":"array"},"pagination":{"$ref":"#\/components\/schemas\/Pagination"}},"type":"object"}}},"description":"Portfolio details"},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"$ref":"#\/components\/responses\/NotFound"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"security":[{"bearerAuth":[]}],"summary":"Get portfolio beneficiaries","x-mojo-name":"get_portfolio_beneficiaries","x-mojo-to":"portfolio#beneficiaries"},"parameters":[{"in":"path","name":"portfolio_id","required":true,"schema":{"format":"uuid","type":"string"}}],"put":{"operationId":"portfolioAddBeneficiaries","requestBody":{"content":{"application\/json":{"schema":{"anyOf":[{"items":{"maxLength":15,"minLength":1,"type":"string"},"type":"array"},{"maxLength":15,"minLength":1,"type":"string"}]}}},"required":true},"responses":{"201":{"description":"Owner added","headers":{"Location":{"content":{"text\/plain":{"schema":{"type":"string"}}}}}},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"$ref":"#\/components\/responses\/NotFound"},"422":{"$ref":"#\/components\/responses\/UnprocessableEntity"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"security":[{"bearerAuth":[]}],"summary":"Add beneficiaries to portfolio","x-mojo-name":"portfolio_add_beneficiaries","x-mojo-to":"portfolio#add_beneficiaries"}},"\/portfolio\/{portfolio_id}\/make_visible":{"parameters":[{"in":"path","name":"portfolio_id","required":true,"schema":{"format":"uuid","type":"string"}}],"put":{"operationId":"makePortfolioVisible","responses":{"201":{"description":"Portfolio is visible","headers":{"Location":{"content":{"text\/plain":{"schema":{"type":"string"}}}}}},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"$ref":"#\/components\/responses\/NotFound"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"security":[{"bearerAuth":[]}],"summary":"Make portfolio visible","x-mojo-name":"make_portfolio_visible","x-mojo-to":"portfolio#make_visible"}},"\/portfolio\/{portfolio_id}\/owner\/{owner_id}":{"delete":{"operationId":"removePortfolioOwner","responses":{"201":{"description":"Portfolio details","headers":{"Location":{"content":{"text\/plain":{"schema":{"type":"string"}}}}}},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"$ref":"#\/components\/responses\/NotFound"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"security":[{"bearerAuth":[]}],"summary":"Remove a single owner from portfolio","x-mojo-name":"remove_portfolio_owner","x-mojo-to":"portfolio#remove_owner"},"parameters":[{"in":"path","name":"portfolio_id","required":true,"schema":{"format":"uuid","type":"string"}},{"in":"path","name":"owner_id","required":true,"schema":{"format":"uuid","type":"string"}}]},"\/portfolio\/{portfolio_id}\/owners":{"get":{"operationId":"getPortfolioOwners","responses":{"200":{"content":{"application\/json":{"schema":{"properties":{"items":{"items":{"$ref":"#\/components\/schemas\/Owner"},"type":"array"},"pagination":{"$ref":"#\/components\/schemas\/Pagination"}},"type":"object"}}},"description":"Portfolio details"},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"$ref":"#\/components\/responses\/NotFound"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"security":[{"bearerAuth":[]}],"summary":"Get portfolio owners","x-mojo-name":"get_portfolio_owners","x-mojo-to":"portfolio#owners"},"parameters":[{"in":"path","name":"portfolio_id","required":true,"schema":{"format":"uuid","type":"string"}}],"put":{"operationId":"portfolioAddOwners","requestBody":{"content":{"application\/json":{"schema":{"items":{"format":"uuid","type":"string"},"type":"array"}}},"required":true},"responses":{"201":{"description":"Owner added","headers":{"Location":{"content":{"text\/plain":{"schema":{"type":"string"}}}}}},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"$ref":"#\/components\/responses\/NotFound"},"422":{"$ref":"#\/components\/responses\/UnprocessableEntity"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"security":[{"bearerAuth":[]}],"summary":"Add owners to portfolio","x-mojo-name":"portfolio_add_owners","x-mojo-to":"portfolio#add_owners"}},"\/portfolio\/{portfolio_id}\/owners\/ids":{"get":{"operationId":"getPortfolioOwnersIds","responses":{"200":{"content":{"application\/json":{"schema":{"items":{"format":"uuid","type":"string"},"type":"array"}}},"description":"Portfolio owners ids"},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"$ref":"#\/components\/responses\/NotFound"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"security":[{"bearerAuth":[]}],"summary":"Get portfolio owners ids","x-mojo-name":"get_portfolio_owners_ids","x-mojo-to":"portfolio#owners_ids"},"parameters":[{"in":"path","name":"portfolio_id","required":true,"schema":{"format":"uuid","type":"string"}}]},"\/portfolios":{"get":{"operationId":"listPortfolios","parameters":[{"description":"Search for number of owners","in":"query","name":"owners","required":false,"schema":{"enum":["none","one","many"],"type":"string"}}],"responses":{"200":{"content":{"application\/json":{"schema":{"properties":{"items":{"items":{"$ref":"#\/components\/schemas\/Portfolio"},"type":"array"},"pagination":{"$ref":"#\/components\/schemas\/Pagination"}},"type":"object"}}},"description":"List of portfolios"},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"$ref":"#\/components\/responses\/NotFound"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"security":[{"bearerAuth":[]}],"summary":"List portfolios","x-mojo-name":"list_portfolios","x-mojo-to":"portfolio#list"}},"\/portfolios\/summary":{"get":{"operationId":"getPortfoliosSummary","responses":{"200":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/PortfoliosSummary"}}},"description":"Portfolios summary"},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"$ref":"#\/components\/responses\/NotFound"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"security":[{"bearerAuth":[]}],"summary":"Get all portfolios summary","x-mojo-name":"get_portfolios_summary","x-mojo-to":"portfolio#summary"}},"\/properties":{"get":{"operationId":"listproperties","parameters":[{"description":"Term to be searched as substring","in":"query","name":"search_value","required":false,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application\/json":{"schema":{"properties":{"items":{"items":{"$ref":"#\/components\/schemas\/Property"},"type":"array"},"pagination":{"$ref":"#\/components\/schemas\/Pagination"}},"type":"object"}}},"description":"List of properties"},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"$ref":"#\/components\/responses\/NotFound"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"security":[{"bearerAuth":[]}],"summary":"List properties","x-mojo-name":"list_properties","x-mojo-to":"property#list"}},"\/property\/{property_id}":{"get":{"operationId":"getproperty","responses":{"200":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/Property"}}},"description":"Property details"},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"$ref":"#\/components\/responses\/NotFound"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"security":[{"bearerAuth":[]}],"summary":"Get property","x-mojo-name":"get_property","x-mojo-to":"property#get"},"parameters":[{"in":"path","name":"property_id","required":true,"schema":{"maxLength":15,"minLength":1,"type":"string"}}],"put":{"operationId":"createproperty","requestBody":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/PropertyNoId"}}},"required":true},"responses":{"201":{"description":"Property added","headers":{"Location":{"content":{"text\/plain":{"schema":{"type":"string"}}}}}},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"$ref":"#\/components\/responses\/NotFound"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"security":[{"bearerAuth":[]}],"summary":"Create property","x-mojo-name":"create_property","x-mojo-to":"property#create"}}},"servers":[{"url":"https:\/\/owner-management-api.us.payprop.com\/"}]}