{
  "$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": {
    "tool": {
      "type": "string"
    },
    "release": {
      "$ref": "#/$defs/EntryRef"
    },
    "inputs": {
      "additionalProperties": {
        "$ref": "#/$defs/EntryRef"
      },
      "type": "object"
    },
    "recipe": true,
    "normalization": {
      "type": "string"
    }
  },
  "type": "object",
  "required": [
    "tool",
    "release",
    "inputs",
    "recipe",
    "normalization"
  ],
  "title": "ApplicationRequest",
  "description": "ApplicationRequest is the retained normalized request: the tool as resolved, the release occurrence, the bound inputs and the canonicalized recipe."
}
