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

291 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"
}