openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/DAY_ATTRIBUTES_GET: post: tags: - SCA5 operationId: /rfc/DAY_ATTRIBUTES_GET requestBody: content: application/json: schema: properties: DATE_FROM: type: string format: date default: SY-DATUM description: From Date DATE_TO: type: string format: date default: SY-DATUM description: To Date FACTORY_CALENDAR: type: string default: ' ' maxLength: 2 description: Factory Calendar HOLIDAY_CALENDAR: type: string default: ' ' maxLength: 2 description: Public Holiday Calendar LANGUAGE: type: string default: SY-LANGU maxLength: 1 description: Language DAY_ATTRIBUTES: type: array items: type: object properties: DATE: type: string format: date description: Date for public holiday and factory calendars FREEDAY: type: string maxLength: 1 description: Fatory calendar flag HOLIDAY: type: string maxLength: 1 description: Fatory calendar flag HOLIDAY_ID: type: string maxLength: 3 description: Public holiday key TXT_SHORT: type: string maxLength: 10 description: Public holidays, short text TXT_LONG: type: string maxLength: 30 description: Long text WEEKDAY: type: string maxLength: 1 description: 'Calendar: Number of day' WEEKDAY_S: type: string maxLength: 2 description: 'Calendar: Day Short Text' WEEKDAY_L: type: string maxLength: 20 description: Day DAY_STRING: type: string maxLength: 60 description: Formatted daily attributes responses: '200': description: OK content: application/json: schema: properties: RETURNCODE: type: integer format: int32 description: Return Code YEAR_OF_VALID_FROM: type: integer format: int64 YEAR_OF_VALID_TO: type: integer format: int64 DAY_ATTRIBUTES: type: array items: type: object properties: DATE: type: string format: date description: Date for public holiday and factory calendars FREEDAY: type: string maxLength: 1 description: Fatory calendar flag HOLIDAY: type: string maxLength: 1 description: Fatory calendar flag HOLIDAY_ID: type: string maxLength: 3 description: Public holiday key TXT_SHORT: type: string maxLength: 10 description: Public holidays, short text TXT_LONG: type: string maxLength: 30 description: Long text WEEKDAY: type: string maxLength: 1 description: 'Calendar: Number of day' WEEKDAY_S: type: string maxLength: 2 description: 'Calendar: Day Short Text' WEEKDAY_L: type: string maxLength: 20 description: Day DAY_STRING: type: string maxLength: 60 description: Formatted daily attributes '400': description: Bad request. 5XX: description: Unexpected error.