{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://weverlabs.com/schemas/runtime-function-response.schema.json",
  "title": "Wever Labs Runtime Function Response",
  "type": "object",
  "required": [
    "ok",
    "rail",
    "persistence",
    "record"
  ],
  "properties": {
    "ok": {
      "type": "boolean"
    },
    "rail": {
      "type": "string"
    },
    "persistence": {
      "type": "object"
    },
    "record": {
      "type": "object"
    },
    "next": {
      "type": "object"
    }
  }
}