ietf-rats / ietf-corim-cddl

This repository is abandoned. The adopted I-D can be found at:
https://github.com/ietf-rats-wg/draft-ietf-rats-corim/
2 stars 0 forks source link

best way to handle multiplicity in measurements #72

Closed thomas-fossati closed 3 years ago

thomas-fossati commented 3 years ago

What is the best way to structure measurements that have multiple different values for the same environment? IOW, is there a preferred way to represent a multimap in CDDL?

Current:

[
  { k1: v1 },
  { k1: v2 },
  ...
]

Alternative:

{
  k1: [ v1, v2, ... ]
}
nedmsmith commented 3 years ago

Added alternative form to main branch.