openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/CHECK_DB_SAP_CONSISTENCY: post: tags: - STCH operationId: /rfc/CHECK_DB_SAP_CONSISTENCY requestBody: content: application/json: schema: properties: CONSCHECK: type: string maxLength: 3 ADDTL_INDEX: type: array items: type: object properties: NAME: type: string maxLength: 40 description: Object Name in Object Directory MISS_INDEX: type: array items: type: object properties: NAME: type: string maxLength: 40 description: Object Name in Object Directory required: - CONSCHECK responses: '200': description: OK content: application/json: schema: properties: NO_DBINDICES: type: integer format: int32 NO_DBTABLES: type: integer format: int32 NO_SAPINDICES: type: integer format: int32 NO_SAPTABLES: type: integer format: int32 ADDTL_INDEX: type: array items: type: object properties: NAME: type: string maxLength: 40 description: Object Name in Object Directory MISS_INDEX: type: array items: type: object properties: NAME: type: string maxLength: 40 description: Object Name in Object Directory '400': description: Bad request. 5XX: description: Unexpected error.