{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://nao1215.github.io/jsonize/schemas/pkg-config/list.json",
  "title": "pkg-config/list",
  "description": "pkg-config --list-all, the modules it knows",
  "x-jsonize": {
    "definition": "pkg-config/list",
    "version": 1
  },
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "name": {
        "type": "string"
      },
      "title": {
        "type": "string"
      },
      "description": {
        "type": "string"
      }
    },
    "required": [
      "name",
      "title",
      "description"
    ]
  }
}
