{
  "$ref": "#/definitions/ExtendedOutfitting",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "definitions": {
    "ExtendedOutfitting": {
      "additionalProperties": false,
      "description": "Extended outfitting info written to separate 'Outfitting.json' file.",
      "properties": {
        "Horizons": {
          "type": "boolean"
        },
        "Items": {
          "items": {
            "additionalProperties": false,
            "properties": {
              "BuyPrice": {
                "type": "number"
              },
              "Name": {
                "type": "string"
              },
              "id": {
                "type": "number"
              }
            },
            "required": [
              "id",
              "Name",
              "BuyPrice"
            ],
            "type": "object"
          },
          "type": "array"
        },
        "MarketID": {
          "type": "number"
        },
        "StarSystem": {
          "type": "string"
        },
        "StationName": {
          "type": "string"
        },
        "event": {
          "const": "Outfitting",
          "description": "The type of event.",
          "type": "string"
        },
        "timestamp": {
          "description": "The time in GMT, ISO 8601.",
          "type": "string"
        }
      },
      "required": [
        "Horizons",
        "Items",
        "MarketID",
        "StarSystem",
        "StationName",
        "event",
        "timestamp"
      ],
      "type": "object"
    }
  }
}