openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/ADA_INSERT_SDBADSDB: post: tags: - SADAJOB operationId: /rfc/ADA_INSERT_SDBADSDB requestBody: content: application/json: schema: properties: CON_NAME: type: string maxLength: 30 FROM_DATE: type: string format: date FROM_TIME: type: string maxLength: 6 MODE: type: string maxLength: 1 WA_SDBADSDB: type: object properties: DAYE: type: integer format: int64 description: 'Day of the week for DBA action enumValues: 1=Monday,4=Thursday,5=Friday,7=Sunday,3=Wednesday,2=Tuesday,6=Saturday' enum: - '1' - '4' - '5' - '7' - '3' - '2' - '6' TIMEE: type: string maxLength: 6 description: Time (24 hour clock) for DBA action to run CRETSTMP: type: string maxLength: 14 description: Date and time (timestamp) of schedule SYSID: type: string maxLength: 8 description: Name of the SAP System STARTTSTMP: type: string maxLength: 14 description: Timestamp for first run of DBA action R3START: type: string maxLength: 14 description: Timestamp for first run of DBA action BTYPE: type: string maxLength: 5 description: Type of DBA action FUNCT: type: string maxLength: 3 description: Function ID for DBA action DBSTART: type: string maxLength: 14 description: Start of the DBA action DBEND: type: string maxLength: 14 description: End of database operation RC: type: integer format: int64 description: Return code EXT1: type: string maxLength: 50 description: Comment EXT2: type: string maxLength: 50 description: Comment EXT3: type: string maxLength: 50 description: Comment required: - MODE - WA_SDBADSDB responses: '200': description: OK '400': description: Bad request. 5XX: description: Unexpected error.