You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The CVR schema has its elements ordered alphabetically (with some exceptions). This means that all CVRs appear before any of the reusable data (e.g. Election, GpUnit, etc.). This precludes the effective use of streaming (or would require multiple passes). I propose we move CVR to the last element of CastVoteRecordReport.
The text was updated successfully, but these errors were encountered:
When people use prettyprint or other such utilities to print the JSON it defaults to sorting the keys. You can override that and keep them in a specific order.
Some NoSQL format, such as DynamoDB on AWS use a non-encapsulated JSON format. Each record is complete json and does not have any comma at the end, and does not need to be encapsulated. I also recommend for ease of use that some white space be added into the format in the form of newlines between records.
The CVR schema has its elements ordered alphabetically (with some exceptions). This means that all
CVR
s appear before any of the reusable data (e.g.Election
,GpUnit
, etc.). This precludes the effective use of streaming (or would require multiple passes). I propose we moveCVR
to the last element ofCastVoteRecordReport
.The text was updated successfully, but these errors were encountered: