{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "description": "",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "minLength": 1
    },
    "description": {
      "type": "string",
      "minLength": 1
    },
    "gameBaseVariantId": {
      "type": "string",
      "minLength": 1
    },
    "iconUrl": {
      "type": "string",
      "minLength": 1
    },
    "id": {
      "type": "string",
      "minLength": 1
    },
    "contentId": {
      "type": "string",
      "minLength": 1
    }
  },
  "required": [
    "name",
    "description",
    "gameBaseVariantId",
    "iconUrl",
    "id",
    "contentId"
  ]
}
