Skip to content

Commit dbfbe73

Browse files
committed
Deploying to main from @ 914e5eaceefffdb8ed6371bc655ac449975127fa πŸš€
1 parent f585ec6 commit dbfbe73

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

β€Žapp.bundle.jsβ€Ž

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -306267,6 +306267,9 @@ CLASS zcl_oapi_schema IMPLEMENTATION.
306267306267
CASE iv_format.
306268306268
WHEN ''binary''.
306269306269
rv_simple = ''xstring''.
306270+
WHEN ''date-time''.
306271+
" https://abapedia.org/steampunk-2305-api/timestampl.dtel.html
306272+
rv_simple = ''timestampl''.
306270306273
WHEN ''uuid''.
306271306274
" https://json-schema.org/understanding-json-schema/reference/string#resource-identifiers
306272306275
" https://abapedia.org/steampunk-2305-api/sysuuid_c36.dtel.html
@@ -342980,6 +342983,8 @@ class zcl_oapi_schema {
342980342983
let unique15 = iv_format;
342981342984
if (abap.compare.eq(unique15, new abap.types.Character(6).set('binary'))) {
342982342985
rv_simple.set(new abap.types.Character(7).set('xstring'));
342986+
} else if (abap.compare.eq(unique15, new abap.types.Character(9).set('date-time'))) {
342987+
rv_simple.set(new abap.types.Character(10).set('timestampl'));
342983342988
} else if (abap.compare.eq(unique15, new abap.types.Character(4).set('uuid'))) {
342984342989
rv_simple.set(new abap.types.Character(11).set('sysuuid_c36'));
342985342990
}

β€Žapp.bundle.js.mapβ€Ž

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
Β (0)