14 lines
334 B
YAML
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" |