from http import HTTPStatus PAYMENT_MINIMUMS_BY_CURRENCY_RESPONSES = { HTTPStatus.OK.value: { 'description': HTTPStatus.OK.phrase, 'content': { 'application/json': { 'schema': { 'type': 'object', 'additionalProperties': { 'type': 'object', 'properties': { 'check_amount': {'type': 'string'}, 'wire_transfer_amount': {'type': 'string'}, 'western_union_amount': {'type': 'string'}, }, }, } } }, } }