[APPC] Remove APPC junk
[testsuite.git] / robot / assets / templates / aai / customer.jinja
1 {
2         "global-customer-id": "{{global_customer_id}}",
3         "subscriber-name": "{{subscriber_name}}",
4         "subscriber-type": "{{subscriber_type}}",
5         {% if service1 %}
6             "service-subscriptions": {
7                     "service-subscription": [{
8                             "service-type": "{{service1}}",
9                             "relationship-list": {
10                                     "relationship": [{
11                                             "related-to": "tenant",
12                                             "relationship-data": [
13                                                 {%- for relationship in relationships -%}
14                                                     {% if not loop.first %},{% endif %}
15                                                     {
16                                                              "relationship-key": "{{relationship.0}}",
17                                                              "relationship-value": "{{relationship.1}}"
18                                                     }
19                                                 {%- endfor %}
20                                             ]
21                                     }]
22                             }
23                     }]
24             }
25         {% endif %}
26 }