openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/CSM_SCHEDULE_COMMAND: post: tags: - SCSM_EXTPROG operationId: /rfc/CSM_SCHEDULE_COMMAND requestBody: content: application/json: schema: properties: ADD_PARAMETERS: type: string maxLength: 255 COMMAND_NAME: type: string maxLength: 30 INTERVAL_DAY: type: integer format: int32 INTERVAL_HOUR: type: integer format: int32 INTERVAL_MIN: type: integer format: int32 PARAMETERS: type: string maxLength: 255 START_DATE: type: string format: date START_TIME: type: string maxLength: 6 required: - COMMAND_NAME - PARAMETERS responses: '200': description: OK '400': description: Bad request. 5XX: description: Unexpected error.