openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/BDS_DOCUMENT_CREA_WITH_MODEL: post: tags: - BDS_BAPI operationId: /rfc/BDS_DOCUMENT_CREA_WITH_MODEL requestBody: content: application/json: schema: properties: CLIENT: type: string default: SY-MANDT maxLength: 3 DOC_ID: type: string maxLength: 42 DOC_VAR_ID: type: integer format: int64 DOC_VER_NO: type: integer format: int64 PROPERTIES: type: array items: type: object properties: NAME: type: string maxLength: 25 description: Attribute of a document or a relationship VALUE: type: string maxLength: 64 description: Attribute Value required: - DOC_ID - DOC_VAR_ID - DOC_VER_NO responses: '200': description: OK content: application/json: schema: properties: NEW_DOC_ID: type: string maxLength: 42 NEW_DOC_VAR_ID: type: integer format: int64 NEW_DOC_VER_NO: type: integer format: int64 PROPERTIES: type: array items: type: object properties: NAME: type: string maxLength: 25 description: Attribute of a document or a relationship VALUE: type: string maxLength: 64 description: Attribute Value '400': description: Bad request. 5XX: description: Unexpected error.