github.com/SAP/cloud-mta-build-tool@v1.2.27/internal/artifacts/testdata/assembly-sample/config-site-host.json (about)

     1  {
     2      "xsappname"     : "java-hello-world-i318495222",
     3      "scopes"        : [
     4                          {
     5                            "name"                 : "$XSAPPNAME.Display",
     6                             "description"         : "display"
     7                          },
     8                          {
     9                            "name"                 : "$XSAPPNAME.Create",
    10                            "description"          : "create"
    11                          },
    12                          {
    13                            "name"                 : "$XSAPPNAME.Delete",
    14                            "description"          : "delete"
    15                          }
    16                        ],
    17      "attributes"    : [
    18                          {
    19                            "name"                 : "Country",
    20                            "description"          : "Country",
    21                            "valueType"            : "s"
    22                          },
    23                          {
    24                            "name"                 : "CostCenter",
    25                            "description"          : "CostCenter",
    26                            "valueType"            : "s"
    27  
    28                          }
    29                        ],
    30      "role-templates": [
    31                          {
    32                            "name"                 : "Viewer",
    33                            "description"          : "View all books",
    34                            "scope-references"     : [
    35                                                       "$XSAPPNAME.Display",
    36                                                       "$XSAPPNAME.Create",
    37                                                       "$XSAPPNAME.Delete"
    38                                                     ],
    39                            "attribute-references" : [
    40                                                       "Country"
    41                                                     ]
    42                          },
    43                          {
    44                            "name"                 : "Editor",
    45                            "description"          : "Edit and Delete the books",
    46                            "scope-references"     : [
    47                                                       "$XSAPPNAME.Create",
    48                                                       "$XSAPPNAME.Delete"
    49                                                     ],
    50                            "attribute-references" : [
    51                                                       "Country",
    52                                                       "CostCenter"
    53                                                     ]
    54                          }
    55                        ]
    56  }