aboutsummaryrefslogtreecommitdiffstats
path: root/src/onapsdk/sdc/templates/sdc_resource_add_input.json.j2
blob: 1964f365038e0f9258ea51bfcdad3e067b5bc47c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
    "serviceProperties":{
        "{{ sdc_resource.unique_identifier }}":[
            {
                "constraints":null,
                "defaultValue":null,
                "description":null,
                "name":"{{ property.name }}",
                "origName":"{{ property.name }}",
                "parentUniqueId":"{{ sdc_resource.unique_identifier }}",
                "password":false,
                "required":false,
                "schema":{
                    "property":{
                        "type":"",
                        "required":false,
                        "definition":false,
                        "description":null,
                        "password":false
                    }
                },
                "schemaType":"",
                "type":"{{ property.property_type }}",
                "uniqueId":"{{ sdc_resource.unique_identifier }}.{{ property.name }}",
                {% if property.value is not none %}
                "value":"{{ property.value }}",
                {% else %}
                "value":null,
                {% endif %}
                "definition":false,
                "getInputValues":null,
                "parentPropertyType":null,
                "subPropertyInputPath":null,
                "getPolicyValues":null,
                "inputPath":null
            }
        ]
    }
}