{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$defs": {
    "Artifact": {
      "properties": {
        "bytes": {
          "type": "string"
        },
        "type": {
          "type": "string"
        }
      },
      "type": "object",
      "required": [
        "bytes",
        "type"
      ],
      "description": "Artifact is exact retained content with a selected interpretation: the hash of the bytes and the hash of the interpretation descriptor the bytes are read under (order 0002 D4)."
    }
  },
  "properties": {
    "artifact": {
      "$ref": "#/$defs/Artifact"
    },
    "size": {
      "type": "integer"
    }
  },
  "type": "object",
  "required": [
    "artifact",
    "size"
  ],
  "title": "RetainResult",
  "description": "RetainResult names bytes that were retained and verified."
}
