Skip to content

Commit 06134bd

Browse files
D047539albertmink
andauthored
[AIFD] - React on UX crosscheck review (#667)
Co-authored-by: Albert Mink <[email protected]>
1 parent 59b44ef commit 06134bd

File tree

3 files changed

+29
-29
lines changed

3 files changed

+29
-29
lines changed

file-formats/aifd/aifd-v1.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -54,25 +54,25 @@
5454
"originalLanguage"
5555
]
5656
},
57-
"aifInterfaces": {
58-
"title": "AIF Interfaces",
59-
"description": "AIF interfaces",
57+
"applicationInterfaces": {
58+
"title": "Application Interfaces",
59+
"description": "Application interfaces",
6060
"type": "array",
6161
"items": {
62-
"title": "AIF Interface",
63-
"description": "AIF interface",
62+
"title": "Application Interface",
63+
"description": "Application interface",
6464
"type": "object",
6565
"properties": {
66-
"interfaceObjectName": {
67-
"title": "Interface Object Name",
68-
"description": "Interface object name",
66+
"applicationInterface": {
67+
"title": "Application Interface",
68+
"description": "Application interface",
6969
"type": "string",
7070
"maxLength": 40
7171
}
7272
},
7373
"additionalProperties": false,
7474
"required": [
75-
"interfaceObjectName"
75+
"applicationInterface"
7676
]
7777
}
7878
}
@@ -81,6 +81,6 @@
8181
"required": [
8282
"formatVersion",
8383
"header",
84-
"aifInterfaces"
84+
"applicationInterfaces"
8585
]
8686
}

file-formats/aifd/examples/z_aff_example_aifd.aifd.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
"originalLanguage": "en",
66
"abapLanguageVersion": "cloudDevelopment"
77
},
8-
"aifInterfaces":[
8+
"applicationInterfaces":[
99
{
10-
"interfaceObjectName":"INT_OBJ_1"
10+
"applicationInterface":"INT_OBJ_1"
1111
},
1212
{
13-
"interfaceObjectName":"/AIFTCUST_WS_I00001"
13+
"applicationInterface":"/AIFTCUST_WS_I00001"
1414
},
1515
{
16-
"interfaceObjectName":"/AIFTCUST_WS_O00001"
16+
"applicationInterface":"/AIFTCUST_WS_O00001"
1717
}
1818
]
1919
}
Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
11
INTERFACE zif_aff_aifd_v1
22
PUBLIC.
33
TYPES:
4-
"! <p class="shorttext">AIF Interface</p>
5-
"! AIF interface
6-
BEGIN OF ty_aif_interface,
7-
"! <p class="shorttext">Interface Object Name</p>
8-
"! Interface object name
4+
"! <p class="shorttext">Application Interface</p>
5+
"! Application interface
6+
BEGIN OF ty_application_interface,
7+
"! <p class="shorttext">Application Interface</p>
8+
"! Application interface
99
"! $required
10-
interface_object_name TYPE c LENGTH 40,
11-
END OF ty_aif_interface,
10+
application_interface TYPE c LENGTH 40,
11+
END OF ty_application_interface,
1212

13-
"! <p class="shorttext">AIF Interfaces</p>
14-
"! AIF interfaces
15-
ty_aif_interfaces TYPE STANDARD TABLE OF ty_aif_interface WITH DEFAULT KEY,
13+
"! <p class="shorttext">Application Interfaces</p>
14+
"! Application interfaces
15+
ty_application_interfaces TYPE STANDARD TABLE OF ty_application_interface WITH DEFAULT KEY,
1616

1717
"! <p class="shorttext">Deployment Scenario</p>
1818
"! Deployment scenario
1919
BEGIN OF ty_main,
2020
"! $required
21-
format_version TYPE zif_aff_types_v1=>ty_format_version,
21+
format_version TYPE zif_aff_types_v1=>ty_format_version,
2222
"! <p class="shorttext">Header</p>
2323
"! Header
2424
"! $required
25-
header TYPE zif_aff_types_v1=>ty_header_60_cloud,
26-
"! <p class="shorttext">AIF Interfaces</p>
27-
"! AIF interfaces
25+
header TYPE zif_aff_types_v1=>ty_header_60_cloud,
26+
"! <p class="shorttext">Application Interfaces</p>
27+
"! Application interfaces
2828
"! $required
29-
aif_interfaces TYPE ty_aif_interfaces,
29+
application_interfaces TYPE ty_application_interfaces,
3030
END OF ty_main.
3131
ENDINTERFACE.

0 commit comments

Comments
 (0)