{
  "description": "A set of documents",
  "type": "object",
  "allOf": [
    {
      "$ref": "common.json#/definitions/sdk_element"
    },
    {
      "properties": {
        "type": {
          "description": "Marker for this type of element",
          "type": "string",
          "enum": [
            "documentation"
          ]
        },
        "docs": {
          "description": "The list of documents pertaining to the set",
          "type": "array",
          "items": {
            "$ref": "common.json#/definitions/file"
          }
        }
      },
      "required": [
        "type",
        "docs"
      ]
    }
  ]
}