{
  "$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": {
    "entry": {
      "$ref": "#/$defs/EntryRef"
    },
    "profile": {
      "type": "string"
    },
    "hash": {
      "type": "string"
    },
    "metadata": {
      "additionalProperties": {
        "type": "string"
      },
      "type": "object"
    },
    "publisher": {
      "type": "string"
    },
    "request_id": {
      "type": "string"
    },
    "request_digest": {
      "type": "string"
    },
    "accepted_at": {
      "type": "string"
    }
  },
  "type": "object",
  "required": [
    "entry",
    "profile",
    "hash",
    "metadata",
    "publisher",
    "request_id",
    "request_digest",
    "accepted_at"
  ],
  "title": "Record",
  "description": "Record is one admitted record occurrence: the fact Dawn appended to an individual record's leaf journal under dawn-facts-v2, with the provenance Dawn persists because Journal supplies none."
}
