openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/BC_PR_INSERT: post: tags: - TPYP summary: x operationId: /rfc/BC_PR_INSERT requestBody: content: application/json: schema: properties: APPLICATION: type: string default: '*' maxLength: 1 AUTHORIZATION_GROUP: type: string default: ' ' maxLength: 8 PROGRAM_NAME: type: string maxLength: 40 PROGRAM_TYPE: type: string default: '1' maxLength: 1 TITLE_STRING: type: string maxLength: 70 SOURCE: type: array items: type: object properties: LINE: type: string maxLength: 72 description: 'EDIC: Program editor line' required: - PROGRAM_NAME - TITLE_STRING responses: '200': description: OK content: application/json: schema: properties: SOURCE: type: array items: type: object properties: LINE: type: string maxLength: 72 description: 'EDIC: Program editor line' '400': description: Bad request. 5XX: description: Unexpected error.