Files
RestCOBOL/README.md
T
2026-06-10 13:30:51 +02:00

257 B

RestCOBOL

A CopyBook will be parsed into usable JSON, like this:

01 STUDENT.
  05 ST_ID         PIC 9(5).
  05 FIRST_NAME    PIC X(20).
  05 LAST_NAME     PIC X(20).
{
  "stId": 34401,
  "firstName": "Lukas",
  "lastName": "King"
}