{
  "x-apiture-version": "2.0.0",
  "title": "Collection (v2.0.0)",
  "description": "A collection of resources. This is an abstract model schema which is extended to define specific resource collections.",
  "allOf": [
    {
      "$ref": "https://production.api.apiture.com/schemas/common/abstractResource/v2.0.0/model.json"
    },
    {
      "type": "object",
      "properties": {
        "count": {
          "description": "The number of items in the collection. This value is _optional_ and may be omitted if the count is not computable efficiently. If a filter is applied to the collection (either implicitly or explicitly), the count, if present, indicates the number of items that satisfy the filter.",
          "type": "integer"
        },
        "start": {
          "description": "The start index of this page of items.",
          "type": "integer"
        },
        "limit": {
          "description": "The maximum number of items per page.",
          "type": "integer"
        },
        "name": {
          "description": "The name of the collection.",
          "type": "string"
        }
      }
    }
  ]
}