{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://nao1215.github.io/jsonize/schemas/ldd/files.json",
  "title": "ldd/files",
  "description": "ldd shared object dependencies of each program named",
  "x-jsonize": {
    "definition": "ldd/files",
    "version": 1
  },
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "program": {
        "type": "object",
        "properties": {
          "path": {
            "type": "string"
          }
        },
        "required": [
          "path"
        ]
      },
      "libraries": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "name": {
              "type": "string"
            },
            "path": {
              "type": "string"
            },
            "address": {
              "type": "string"
            },
            "status": {
              "type": "string",
              "enum": [
                "not found"
              ]
            }
          },
          "required": [
            "name"
          ]
        }
      }
    },
    "required": [
      "program",
      "libraries"
    ]
  }
}
