openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/BDS_BUSINESSDOCUMENT_GET_FPROP: post: tags: - BDS_BAPI operationId: /rfc/BDS_BUSINESSDOCUMENT_GET_FPROP requestBody: content: application/json: schema: properties: CLASSNAME: type: string maxLength: 30 CLASSTYPE: type: string maxLength: 2 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 LOGICAL_SYSTEM: type: string maxLength: 10 OBJECT_KEY: type: string maxLength: 70 EXTENDED_COMPONENTS: type: array items: type: object properties: CLASS: type: string maxLength: 10 description: Document class OBJID: type: string maxLength: 32 description: ID for documents and relations FILE_NAME: type: string maxLength: 255 description: Relative storage location of physical document MIMETYPE: type: string maxLength: 128 description: HTML content type FILE_TYPE: type: string maxLength: 1 description: 'Type of data transfer enumValues: ""=Type of data transfernot specified,T=Text data,B=Binary data' enum: - '' - T - B FILE_SIZE: type: integer format: int64 description: File size (in bytes) PROPERTY: type: string maxLength: 4 description: Component attribute for the application required: - CLASSNAME - CLASSTYPE - DOC_ID - DOC_VAR_ID - DOC_VER_NO - OBJECT_KEY responses: '200': description: OK content: application/json: schema: properties: EXTENDED_COMPONENTS: type: array items: type: object properties: CLASS: type: string maxLength: 10 description: Document class OBJID: type: string maxLength: 32 description: ID for documents and relations FILE_NAME: type: string maxLength: 255 description: Relative storage location of physical document MIMETYPE: type: string maxLength: 128 description: HTML content type FILE_TYPE: type: string maxLength: 1 description: 'Type of data transfer enumValues: ""=Type of data transfernot specified,T=Text data,B=Binary data' enum: - '' - T - B FILE_SIZE: type: integer format: int64 description: File size (in bytes) PROPERTY: type: string maxLength: 4 description: Component attribute for the application '400': description: Bad request. 5XX: description: Unexpected error.