Django-jsonforms как убрать метку Json: для поля jsonschemaform?

Я использую django-jsonforms. Я пытаюсь убрать "Json:" на картинке.

how remove the "Json:" label?

b =  {
     "title": "Product",
   "description": "A product",
   "type": "object",
   "properties": {
      "Products": {
          "type": "array",
          "products": {
              "type": "string"
          },
          "minItems": 0,
          "maxItems": 5,
      }
  }
}

Я уже пробовал self.fields["form"].label = "myform" и менять виджет, и ставить в схему "label", "ui:label" и т.д. Не могу ничего найти в документации

Вернуться на верх