{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://nao1215.github.io/jsonize/schemas/go/version.json",
  "title": "go/version",
  "description": "go version, the Go release and the system it was built for",
  "x-jsonize": {
    "definition": "go/version",
    "version": 1
  },
  "type": "object",
  "properties": {
    "version": {
      "type": "string"
    },
    "experiments": {
      "type": [
        "array",
        "null"
      ],
      "items": {
        "type": "string"
      }
    },
    "os": {
      "type": "string"
    },
    "arch": {
      "type": "string"
    }
  },
  "required": [
    "version",
    "experiments",
    "os",
    "arch"
  ]
}
