{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://catalog.lintel.tools/schemas/schemastore/contribute-json/latest.json",
  "title": "Mozilla's contribute.json",
  "x-lintel": {
    "source": "https://raw.githubusercontent.com/mozilla/contribute.json/master/schema.json",
    "sourceSha256": "10113769e2812fdacdbad05bada3482984fd7b59e07b0779540759888671fe87",
    "fileMatch": [
      "contribute.json"
    ],
    "parsers": [
      "json"
    ]
  },
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "keywords": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "participate": {
      "type": "object",
      "properties": {
        "home": {
          "type": "string"
        },
        "docs": {
          "type": "string"
        },
        "mailing-list": {
          "type": "string"
        },
        "irc": {
          "type": "string"
        },
        "irc-contacts": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "chat": {
          "type": "object",
          "properties": {
            "url": {
              "type": "string"
            },
            "contacts": {
              "type": "array",
              "items": {
                "type": "string"
              }
            }
          },
          "required": [
            "url"
          ]
        }
      },
      "required": [
        "docs"
      ]
    },
    "repository": {
      "type": "object",
      "properties": {
        "type": {
          "type": "string"
        },
        "url": {
          "type": "string"
        },
        "license": {
          "type": "string"
        },
        "tests": {
          "type": "string"
        },
        "clone": {
          "type": "string"
        }
      },
      "required": [
        "url",
        "license"
      ]
    },
    "bugs": {
      "type": "object",
      "properties": {
        "list": {
          "type": "string"
        },
        "report": {
          "type": "string"
        },
        "mentored": {
          "type": "string"
        }
      }
    },
    "urls": {
      "type": "object",
      "properties": {
        "prod": {
          "type": "string"
        },
        "stage": {
          "type": "string"
        },
        "dev": {
          "type": "string"
        }
      }
    }
  },
  "required": [
    "name",
    "description",
    "repository"
  ]
}
