{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "/widget/links.json",
  "description": "Recommendation links widget configurations",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "const": "links"
    },
    "links": {
      "type": "object",
      "description": "Names and URLs of the sites",
      "patternProperties": {
        ".+": {
          "anyOf": [
            {
              "type": "string",
              "description": "URL of the site"
            },
            {
              "type": "object",
              "properties": {
                "link": {
                  "type": "string",
                  "description": "URL of the site"
                },
                "hide_hostname": {
                  "type": "boolean",
                  "description": "Whether remove righthand hostname tag from the menu"
                }
              }
            }
          ]
        }
      },
      "examples": [
        {
          "Hexo": "https://hexo.io",
          "Bulma": "https://bulma.io"
        }
      ],
      "nullable": true
    }
  },
  "required": ["type"]
}
