{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://weverlabs.com/schemas/rail-run-starter.schema.json",
  "title": "Wever Labs Rail Run Starter",
  "type": "object",
  "properties": {
    "rail": {
      "type": "string"
    },
    "scope": {
      "type": "string"
    },
    "returns": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "start_url": {
      "type": "string"
    },
    "loop_endpoint": {
      "type": "string"
    },
    "checkout_url": {
      "type": "string"
    },
    "required_fields": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "rail"
  ]
}