{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$defs": {
    "EntryRef": {
      "properties": {
        "root_id": {
          "type": "string"
        },
        "space_id": {
          "type": "string"
        },
        "position": {
          "type": "integer"
        }
      },
      "type": "object",
      "required": [
        "root_id",
        "space_id",
        "position"
      ],
      "description": "EntryRef is the occurrence identity of one entry: a position in one journal."
    }
  },
  "properties": {
    "view": {
      "$ref": "#/$defs/EntryRef"
    },
    "assertion": {
      "type": "string"
    }
  },
  "type": "object",
  "required": [
    "view",
    "assertion"
  ],
  "title": "ExplainRequest",
  "description": "ExplainRequest asks where an admitted assertion selected by a view comes from."
}
