aboutsummaryrefslogtreecommitdiffstats
path: root/src/onapsdk/aai/templates/customer_create_update.json.j2
blob: 0eea2ed36601a378e3f9f757bacd1bd5c0d68a8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
    "global-customer-id": "{{ global_customer_id }}",
    "subscriber-name": "{{ subscriber_name }}",
    "subscriber-type": "{{ subscriber_type }}"{% if service_subscriptions %},
    "service-subscriptions": {
        "service-subscription": [
        {% for service_subscription in service_subscriptions %}
        {
                "service-type": "{{ service_subscription }}"
        }{% if not loop.last %},{% endif %}
        {% endfor %}
        ]
    }
    {% endif %}
}