Files
RestCOBOL/api.yaml
T
2026-06-11 22:19:31 +02:00

14 lines
334 B
YAML

version: "1.0"
project: "legacy-student-api"
endpoints:
- path: "/students/:id"
method: "GET"
cobol_source: "src/fetch_student.cbl"
procedure: "FETCH-STUDENT"
arguments:
- name: "id"
target: "LK-ID"
type: "PIC 9(5)"
source: "path"
response_copybook: "src/copybooks/student_res.cpy"