aboutsummaryrefslogtreecommitdiffstats
path: root/src/onapsdk/sdc/templates/sdc_resource_add_property.json.j2
blob: bc022756bdda174090e9f891eeb4075bf55c15db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
    "{{ property.name }}":{
        "schema":{
            "property":{
                "type":""
            }
        },
        "name": "{{ property.name }}",
        {%- if property.description %}
        "description": "{{ property.description }}",
        {%- endif %}
        {%- if property.value %}
        "value": "{{ property.value }}",
        {%- endif %}
        "type": "{{ property.property_type }}"
    }
}