We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c17ac5 commit eb6b7a1Copy full SHA for eb6b7a1
README.md
@@ -9,4 +9,8 @@ cmake ..
9
make
10
ctest
11
```
12
-
+## Note
13
+When building the metadata and asset objects take the following measures:
14
+1. No spaces in the json structure: '{"key 1": "value a"}' becomes '{"key 2":"value a"}
15
+2. Keys should be alphabetically ordered: '{"key 1":"value a","A key":"A value"}' becomes {"A key":"A value","key 1":"value a"}'
16
+3. No numbers fields, only strings '{"key 1": 2.3123}' becomes '{"key 1":"2.3123"}'
0 commit comments