{
  "type": "array",
  "$schema": "http://json-schema.org/draft-04/schema#",
  "description": "",
  "minItems": 1,
  "uniqueItems": true,
  "items": {
    "type": "object",
    "required": [
      "name",
      "description",
      "classification",
      "difficulty",
      "spriteLocation",
      "id",
      "contentId"
    ],
    "properties": {
      "name": {
        "type": "string",
        "minLength": 1
      },
      "description": {
        "type": "string",
        "minLength": 1
      },
      "classification": {
        "type": "string",
        "minLength": 1
      },
      "difficulty": {
        "type": "number"
      },
      "spriteLocation": {
        "type": "object",
        "properties": {
          "spriteSheetUri": {
            "type": "string",
            "minLength": 1
          },
          "left": {
            "type": "number"
          },
          "top": {
            "type": "number"
          },
          "width": {
            "type": "number"
          },
          "height": {
            "type": "number"
          },
          "spriteWidth": {
            "type": "number"
          },
          "spriteHeight": {
            "type": "number"
          }
        },
        "required": [
          "spriteSheetUri",
          "left",
          "top",
          "width",
          "height",
          "spriteWidth",
          "spriteHeight"
        ]
      },
      "id": {
        "type": "string",
        "minLength": 1
      },
      "contentId": {
        "type": "string",
        "minLength": 1
      }
    }
  }
}
