aboutsummaryrefslogtreecommitdiffstats
path: root/src/onapsdk/sdc/templates/sdc_resource_add_property.json.j2
diff options
context:
space:
mode:
Diffstat (limited to 'src/onapsdk/sdc/templates/sdc_resource_add_property.json.j2')
-rw-r--r--src/onapsdk/sdc/templates/sdc_resource_add_property.json.j217
1 files changed, 17 insertions, 0 deletions
diff --git a/src/onapsdk/sdc/templates/sdc_resource_add_property.json.j2 b/src/onapsdk/sdc/templates/sdc_resource_add_property.json.j2
new file mode 100644
index 0000000..bed49ca
--- /dev/null
+++ b/src/onapsdk/sdc/templates/sdc_resource_add_property.json.j2
@@ -0,0 +1,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 }}"
+ }
+} \ No newline at end of file