openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/DB2_JOB_DEFAULT_ACTION_LIST: post: tags: - SDB2JOB summary: 'DB6: generate list of recommended actions' operationId: /rfc/DB2_JOB_DEFAULT_ACTION_LIST requestBody: content: application/json: schema: properties: CONNECTION: type: string maxLength: 30 description: Logical name for a database connection DBOPSYS: type: string maxLength: 10 description: 'System: Operating system' SYSTEMTYPE: type: integer format: int32 PATTERNS: type: array items: type: object properties: BTYPE: type: string maxLength: 5 description: Type of DBA action TIMEE: type: string maxLength: 6 description: Time (24 hour clock) for DBA action to run PROPOSED: type: string maxLength: 1 description: '' required: - DBOPSYS - SYSTEMTYPE responses: '200': description: OK content: application/json: schema: properties: PATTERNS: type: array items: type: object properties: BTYPE: type: string maxLength: 5 description: Type of DBA action TIMEE: type: string maxLength: 6 description: Time (24 hour clock) for DBA action to run PROPOSED: type: string maxLength: 1 description: '' '400': description: Bad request. 5XX: description: Unexpected error.