From df3d5b152a61a2de331f5f2a9823176421cafd77 Mon Sep 17 00:00:00 2001 From: Thomas Fossati Date: Mon, 4 Mar 2024 09:57:47 +0100 Subject: [PATCH] update tables Signed-off-by: Thomas Fossati --- cddl/eat-plug.cddl | 14 +++++++------- draft-fft-rats-eat-measured-component.md | 12 ++++++------ materials/ietf-119.md | 12 ++++++------ 3 files changed, 19 insertions(+), 19 deletions(-) diff --git a/cddl/eat-plug.cddl b/cddl/eat-plug.cddl index cfe0a1a..3fd1420 100644 --- a/cddl/eat-plug.cddl +++ b/cddl/eat-plug.cddl @@ -1,10 +1,10 @@ -$mc-cbor = bstr .cbor measured-component -$mc-json = tstr .json measured-component +mc-cbor = bstr .cbor measured-component +mc-json = tstr .json measured-component -EAT CBOR (`.feature "cbor"`) -$measurements-body-cbor /= $mc-cbor ; native -$measurements-body-cbor /= tstr .b64u $mc-json ; tunnel +; EAT CBOR (`.feature "cbor"`) +$measurements-body-cbor /= mc-cbor ; native +$measurements-body-cbor /= tstr .b64u mc-json ; tunnel ; EAT JSON (`.feature "json"`) -$measurements-body-json /= $mc-json ; native -$measurements-body-json /= tstr .b64u $mc-cbor ; tunnel +$measurements-body-json /= mc-json ; native +$measurements-body-json /= tstr .b64u mc-cbor ; tunnel diff --git a/draft-fft-rats-eat-measured-component.md b/draft-fft-rats-eat-measured-component.md index ee4a323..049dce0 100644 --- a/draft-fft-rats-eat-measured-component.md +++ b/draft-fft-rats-eat-measured-component.md @@ -112,15 +112,15 @@ The CDDL extending the EAT Measurements format: | `content-type` (CoAP C-F equivalent) | `content-format` | |--|--| -| `application/measured-component+cbor` | `bytes .cbor measured-component` | -| `application/measured-component+json` | `text .b64u measured-component` | +| `application/measured-component+cbor` | `mc-cbor` | +| `application/measured-component+json` | `tstr .b64u mc-json` | ### JWT | `content-type` (CoAP C-F equivalent) | `content-format` | |--|--| -| `application/measured-component+json` | `text .json measured-component` | -| `application/measured-component+cbor` | `text .b64u measured-component` | +| `application/measured-component+json` | `mc-json` | +| `application/measured-component+cbor` | `tstr .b64u mc-cbor` | # Examples @@ -283,7 +283,7 @@ The list of currently open issues for this documents can be found at [](https:// {:numbered="false"} The authors would like to thank -TBD -for their comments, reviews and suggestions. +Carsten Bormann +for comments, reviews and suggestions. [^rfced]: RFC Editor: diff --git a/materials/ietf-119.md b/materials/ietf-119.md index 0489e1b..545cbb0 100644 --- a/materials/ietf-119.md +++ b/materials/ietf-119.md @@ -80,23 +80,23 @@ measured-component = [ CBOR & JSON serialisations ``` -$mc-cbor = bstr .cbor measured-component -$mc-json = tstr .json measured-component +mc-cbor = bstr .cbor measured-component +mc-json = tstr .json measured-component ``` EAT CBOR (`.feature "cbor"`) ``` -$measurements-body-cbor /= $mc-cbor ; native -$measurements-body-cbor /= tstr .b64u $mc-json ; tunnel +$measurements-body-cbor /= mc-cbor ; native +$measurements-body-cbor /= tstr .b64u mc-json ; tunnel ``` EAT JSON (`.feature "json"`) ``` -$measurements-body-json /= $mc-json ; native -$measurements-body-json /= tstr .b64u $mc-cbor ; tunnel +$measurements-body-json /= mc-json ; native +$measurements-body-json /= tstr .b64u mc-cbor ; tunnel ``` ---