Example in README of JSON parsing

This commit is contained in:
2026-06-10 13:30:51 +02:00
parent 5599ca116e
commit 5dc3af1e01
+16
View File
@@ -0,0 +1,16 @@
# RestCOBOL
A CopyBook will be parsed into usable JSON, like this:
```cpy
01 STUDENT.
05 ST_ID PIC 9(5).
05 FIRST_NAME PIC X(20).
05 LAST_NAME PIC X(20).
```
```json
{
"stId": 34401,
"firstName": "Lukas",
"lastName": "King"
}
```