{
  "formatVersion": 1,
  "database": {
    "version": 1,
    "identityHash": "b3ce799d93efad7dd463b10234bc24f8",
    "entities": [
      {
        "tableName": "encryption_key",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`encryption_key_type` INTEGER NOT NULL, `key_identifier` TEXT NOT NULL, `public_key` TEXT NOT NULL, `creation_instant` INTEGER, `expiry_ttl_seconds` INTEGER NOT NULL, `expiry_instant` INTEGER NOT NULL, PRIMARY KEY(`encryption_key_type`, `key_identifier`))",
        "fields": [
          {
            "fieldPath": "encryptionKeyType",
            "columnName": "encryption_key_type",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "keyIdentifier",
            "columnName": "key_identifier",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "publicKey",
            "columnName": "public_key",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "creationInstant",
            "columnName": "creation_instant",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "expiryTtlSeconds",
            "columnName": "expiry_ttl_seconds",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "expiryInstant",
            "columnName": "expiry_instant",
            "affinity": "INTEGER",
            "notNull": true
          }
        ],
        "primaryKey": {
          "autoGenerate": false,
          "columnNames": [
            "encryption_key_type",
            "key_identifier"
          ]
        },
        "indices": [
          {
            "name": "index_encryption_key_encryption_key_type_expiry_instant",
            "unique": false,
            "columnNames": [
              "encryption_key_type",
              "expiry_instant"
            ],
            "orders": [],
            "createSql": "CREATE INDEX IF NOT EXISTS `index_encryption_key_encryption_key_type_expiry_instant` ON `${TABLE_NAME}` (`encryption_key_type`, `expiry_instant`)"
          }
        ],
        "foreignKeys": []
      },
      {
        "tableName": "encryption_context",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`context_id` INTEGER NOT NULL, `encryption_key_type` INTEGER NOT NULL, `key_config` BLOB, `shared_secret` BLOB, `seed` BLOB, PRIMARY KEY(`context_id`, `encryption_key_type`))",
        "fields": [
          {
            "fieldPath": "contextId",
            "columnName": "context_id",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "encryptionKeyType",
            "columnName": "encryption_key_type",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "keyConfig",
            "columnName": "key_config",
            "affinity": "BLOB",
            "notNull": false
          },
          {
            "fieldPath": "sharedSecret",
            "columnName": "shared_secret",
            "affinity": "BLOB",
            "notNull": false
          },
          {
            "fieldPath": "seed",
            "columnName": "seed",
            "affinity": "BLOB",
            "notNull": false
          }
        ],
        "primaryKey": {
          "autoGenerate": false,
          "columnNames": [
            "context_id",
            "encryption_key_type"
          ]
        },
        "indices": [],
        "foreignKeys": []
      },
      {
        "tableName": "reporting_uris",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`ad_selection_id` INTEGER NOT NULL, `seller_reporting_uri` TEXT NOT NULL, `buyer_reporting_uri` TEXT NOT NULL, PRIMARY KEY(`ad_selection_id`))",
        "fields": [
          {
            "fieldPath": "adSelectionId",
            "columnName": "ad_selection_id",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "sellerReportingUri",
            "columnName": "seller_reporting_uri",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "buyerReportingUri",
            "columnName": "buyer_reporting_uri",
            "affinity": "TEXT",
            "notNull": true
          }
        ],
        "primaryKey": {
          "autoGenerate": false,
          "columnNames": [
            "ad_selection_id"
          ]
        },
        "indices": [
          {
            "name": "index_reporting_uris_ad_selection_id",
            "unique": false,
            "columnNames": [
              "ad_selection_id"
            ],
            "orders": [],
            "createSql": "CREATE INDEX IF NOT EXISTS `index_reporting_uris_ad_selection_id` ON `${TABLE_NAME}` (`ad_selection_id`)"
          }
        ],
        "foreignKeys": []
      }
    ],
    "views": [],
    "setupQueries": [
      "CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
      "INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, 'b3ce799d93efad7dd463b10234bc24f8')"
    ]
  }
}