{
  "$schema": "http://json-schema.org/draft-04/schema",
  "id": "import-error-collection-page.json",
  "type": "object",
  "properties": {
    "items": {
      "readOnly": true,
      "type": "array",
      "items": {    
        "type": "object",
        "properties": {
          "errorCode": {
            "readOnly": true,
            "type": "string"
          },
          "email": {
            "readOnly": true,
            "type": "string"
          },
          "itemNumber": {
            "readOnly": true,
            "type": "integer"
          }
        }
      }
    },
    "pageSize": {
      "readOnly": true,
      "type": "integer"
    },
    "itemsCount": {
      "readOnly": true,
      "type": "integer"
    },
    "currentPage": {
      "readOnly": true,
      "type": "integer"
    },
    "pagesCount": {
      "readOnly": true,
      "type": "integer"
    },
    "lastPage": {
      "readOnly": true,
      "type": "integer"
    },
    "_links": {
      "$ref": "link-collection.json"
    }
  },
  "required": [ "items" ]
}
