aboutsummaryrefslogtreecommitdiffstats
path: root/src/onapsdk/sdc/templates/sdc_resource_add_property.json.j2
blob: bed49ca3c8b18c5ab9bd0cf6e4c16ee74291be58 (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 }}"
    }
}