aboutsummaryrefslogtreecommitdiffstats
path: root/src/onapsdk/sdc/templates/sdc_resource_category.json.j2
blob: c346b89caa98732aab2f6e1ee29f776419e7fa2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
  "categories": [
    {
      "normalizedName": "{{ category.normalized_name }}",
      "name": "{{ category.name }}",
      "uniqueId": "{{ category.unique_id }}",
      "subcategories": {%- if category.subcategories %}{{ category.subcategories|tojson }}{% else %}null{%- endif %},
      "version": {%- if category.version %}"{{ category.version }}"{% else %}null{%- endif %},
      "ownerId": {%- if category.owner_id %}"{{ category.owner_id }}"{% else %}null{%- endif %},
      "empty": {{ category.empty|tojson }},
      "type": {%- if category.type %}"{{ category.type }}"{% else %}null{%- endif %},
      "icons": {% if category.icons %}{{ category.icons|tojson }}{% else %}null{% endif %}
    }
  ]