Hi Everyone,
I am trying to add dynamic field on Suitecommerce record. Field is created on SC record but when I save the record it shows the blank field.
Can anyone of you  please help?
Here is the code:
{
  "type": "object",
  "subtab": {
      "id": "custpage_image_links",
      "group": "layout",
      "title": "DropDownImage Links",
      "description": "Links for the DropDown Image section"
  },
  "properties": {
      "dropdownImg.links": {
          "group": "layout",
          "subtab": "custpage_image_links",
          "type": "array",
          "title": "Links",
          "description": "Add a list of links to be added to the DropDown Category",
          "items": {
              "type": "object",
              "properties": {
                  "href": {
                      "type": "string",
                      "title": "URL / Path",
                      "description": "Test Images",
                      "mandatory": true
                  }
              }
          }
      }
  }
}