curl --location --request PUT '/rest/api/3/app/field//context/configuration' \
--header 'Content-Type: application/json' \
--data-raw '{
    "configurations": [
        {
            "id": "10000"
        },
        {
            "configuration": {
                "maxValue": 10000,
                "minValue": 0
            },
            "id": "10001",
            "schema": {
                "properties": {
                    "amount": {
                        "type": "number"
                    },
                    "currency": {
                        "type": "string"
                    }
                },
                "required": [
                    "amount",
                    "currency"
                ]
            }
        }
    ]
}'null