{

"table_name": "identities",
"key_schema": [
    {
        "attribute_name": "identity_id",
        "key_type": "HASH" 
    }
],
"attribute_definitions": [
    {
        "attribute_name": "identity_id",
        "attribute_type": "S"
    },
    {
        "attribute_name": "entity_id",
        "attribute_type": "S"
    },
    {
        "attribute_name": "email",
        "attribute_type": "S"
    }
],
"global_secondary_indexes": [
    {
        "index_name": "email_index",
        "key_schema": [
        {
            "attribute_name": "email",
            "key_type": "HASH"
        }
        ],
        "projection": {
            "projection_type": "ALL"

        },
        "provisioned_throughput": { 
            "read_capacity_units": 10,
            "write_capacity_units": 10
        }
    },
    {
        "index_name": "entity_id_index",
        "key_schema": [
        {
            "attribute_name": "entity_id",
            "key_type": "HASH"
        }
        ],
        "projection": {
            "projection_type": "ALL"

        },
        "provisioned_throughput": { 
            "read_capacity_units": 10,
            "write_capacity_units": 10
        }
    }
],
"provisioned_throughput": { 
    "read_capacity_units": 10,
    "write_capacity_units": 10
}

}