Skip to content

Commit dbf587f

Browse files
authored
Update the JSON<->TLV Converter doc to align with implemantation (project-chip#32367)
1 parent 2011f76 commit dbf587f

File tree

1 file changed

+14
-10
lines changed

1 file changed

+14
-10
lines changed

src/lib/support/jsontlv/README.md

+14-10
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,17 @@ Helper functions for converting TLV-encoded data to Json format and vice versa.
99
The library supports
1010

1111
- full bi-directional conversion for matter data model payloads
12-
- Additional support for generic 32-bit unsigned integer ids using "implicit
13-
profile tags":
1412

15-
- 8-bit IDs are encoded as `ContextTags`, which matches matter
16-
specification for encoding field identifiers
17-
- For IDs that are larger, they will be encoded as
18-
`Implicit Profile Tags`. The reason for allowing such IDs is to support
19-
json formats where keys contain ids typically found in paths, like
20-
`{"1234:INT": 10}` meaning `"Attribute 1234 has value 10"`.
13+
- When the MEI prefix encodes a standard/scoped source, the tag is encoded
14+
using ContextSpecific tag if tag_id is less than or equal to UINT8_MAX, and
15+
ImplicitProfile tag if tag_id is larger than UINT8_MAX. The reason for
16+
allowing such IDs is to support json formats where keys contain ids
17+
typically found in paths, like `{"1234:INT": 10}` meaning
18+
`"Attribute 1234 has value 10"`.
19+
20+
- When the MEI prefix encodes a manufacturer code, the tag is encoded using
21+
FullyQualified_6Bytes tag, the Vendor ID SHALL be set to the manufacturer
22+
code, the profile number set to 0 and the tag number set to the MEI suffix.
2123

2224
### Format details
2325

@@ -75,12 +77,13 @@ limitations of this format are:
7577
- TLV List types are not supported.
7678
- TLV Array cannot contain another TLV Array.
7779
- The top-level container MUST be an anonymous STRUCT.
78-
- Elements of the TLV Structure MUST have Context or Implicit Profile Tags.
80+
- Elements of the TLV Structure MUST have Context or Implicit Profile Tags for
81+
standard/scoped source and Fully Qualified Profile Tags for an MC source.
7982
- Implicit Profile Tag number MUST be larger or equal to 256 and smaller than
8083
2^32 + 1.
8184
- TLV Structure element MUST be sorted by tag numbers from low to high, where
8285
sorted elements with Context Tags MUST appear first followed by sorted
83-
elements with Implicit Profile Tags.
86+
elements with Implicit Profile Tags and then Profile Specific Tags.
8487

8588
## Format Example
8689

@@ -120,6 +123,7 @@ elements, arrays, and structures.
120123
"8:DOUBLE" : 17.9, // 17.9 as double
121124
"9:FLOAT" : 17.9, // 17.9 as float
122125
"10:FLOAT" : "-Infinity", // Negative infinity float
126+
"4293984426:UINT" : 3, // Vendor ID = 0xFFF1, Profile ID = 0, Tag ID = 0x00AA
123127
"contact:11:STRUCT" : { // structure example with field_name in the Json name
124128
"name:1:STRING" : "John",
125129
"age:2:UINT" : 34,

0 commit comments

Comments
 (0)