{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Stripe Movement Fee Webhook",
  "type": "object",
  "additionalProperties": true,
  "properties": {
    "mode": {
      "type": "string",
      "default": "record_stripe_webhook"
    },
    "rail_key": {
      "type": "string"
    },
    "movement_amount_units": {
      "type": "number"
    },
    "movement_type": {
      "type": "string"
    },
    "submission_target": {
      "type": "string"
    },
    "idempotency_key": {
      "type": "string"
    },
    "payment_reference": {
      "type": "string"
    }
  },
  "required": [
    "mode"
  ]
}