{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "AIEP Innovation Ledger Entry",
  "type": "object",
  "required": [
    "record_type",
    "record_id",
    "title",
    "originator",
    "created_utc",
    "visibility"
  ],
  "properties": {
    "record_type": {
      "const": "AIEP_INNOVATION_LEDGER_ENTRY"
    },
    "record_id": {
      "type": "string"
    },
    "title": {
      "type": "string"
    },
    "originator": {
      "type": "string"
    },
    "created_utc": {
      "type": "string"
    },
    "visibility": {
      "enum": [
        "PUBLIC",
        "NDA"
      ]
    },
    "sealed_private_pack_sha256": {
      "type": "string"
    }
  }
}