Created
September 4, 2018 02:53
-
-
Save mikecann/12709c60c92d9c36d6ebd0d83d33bc0d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
commitId: { | |
type: String, | |
required: true, | |
index: { | |
global: true, | |
name: commitIdIndexName, | |
project: true | |
} | |
}, | |
aggregateId: { | |
type: String, | |
hashKey: true, | |
required: true | |
}, | |
version: { | |
type: Number, | |
rangeKey: true, | |
required: true | |
}, | |
events: { | |
type: Array, | |
required: true | |
}, | |
ownerId: { | |
type: String | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment