github.com/lineaje-labs/syft@v0.98.1-0.20231227153149-9e393f60ff1b/schema/json/schema-7.1.0.json (about)

     1  {
     2    "$schema": "https://json-schema.org/draft/2020-12/schema",
     3    "$id": "https://github.com/anchore/syft/syft/formats/syftjson/model/document",
     4    "$ref": "#/$defs/Document",
     5    "$defs": {
     6      "AlpmFileRecord": {
     7        "properties": {
     8          "path": {
     9            "type": "string"
    10          },
    11          "type": {
    12            "type": "string"
    13          },
    14          "uid": {
    15            "type": "string"
    16          },
    17          "gid": {
    18            "type": "string"
    19          },
    20          "time": {
    21            "type": "string",
    22            "format": "date-time"
    23          },
    24          "size": {
    25            "type": "string"
    26          },
    27          "link": {
    28            "type": "string"
    29          },
    30          "digest": {
    31            "items": {
    32              "$ref": "#/$defs/Digest"
    33            },
    34            "type": "array"
    35          }
    36        },
    37        "type": "object"
    38      },
    39      "AlpmMetadata": {
    40        "properties": {
    41          "basepackage": {
    42            "type": "string"
    43          },
    44          "package": {
    45            "type": "string"
    46          },
    47          "version": {
    48            "type": "string"
    49          },
    50          "description": {
    51            "type": "string"
    52          },
    53          "architecture": {
    54            "type": "string"
    55          },
    56          "size": {
    57            "type": "integer"
    58          },
    59          "packager": {
    60            "type": "string"
    61          },
    62          "license": {
    63            "type": "string"
    64          },
    65          "url": {
    66            "type": "string"
    67          },
    68          "validation": {
    69            "type": "string"
    70          },
    71          "reason": {
    72            "type": "integer"
    73          },
    74          "files": {
    75            "items": {
    76              "$ref": "#/$defs/AlpmFileRecord"
    77            },
    78            "type": "array"
    79          },
    80          "backup": {
    81            "items": {
    82              "$ref": "#/$defs/AlpmFileRecord"
    83            },
    84            "type": "array"
    85          }
    86        },
    87        "type": "object",
    88        "required": [
    89          "basepackage",
    90          "package",
    91          "version",
    92          "description",
    93          "architecture",
    94          "size",
    95          "packager",
    96          "license",
    97          "url",
    98          "validation",
    99          "reason",
   100          "files",
   101          "backup"
   102        ]
   103      },
   104      "ApkFileRecord": {
   105        "properties": {
   106          "path": {
   107            "type": "string"
   108          },
   109          "ownerUid": {
   110            "type": "string"
   111          },
   112          "ownerGid": {
   113            "type": "string"
   114          },
   115          "permissions": {
   116            "type": "string"
   117          },
   118          "digest": {
   119            "$ref": "#/$defs/Digest"
   120          }
   121        },
   122        "type": "object",
   123        "required": [
   124          "path"
   125        ]
   126      },
   127      "ApkMetadata": {
   128        "properties": {
   129          "package": {
   130            "type": "string"
   131          },
   132          "originPackage": {
   133            "type": "string"
   134          },
   135          "maintainer": {
   136            "type": "string"
   137          },
   138          "version": {
   139            "type": "string"
   140          },
   141          "license": {
   142            "type": "string"
   143          },
   144          "architecture": {
   145            "type": "string"
   146          },
   147          "url": {
   148            "type": "string"
   149          },
   150          "description": {
   151            "type": "string"
   152          },
   153          "size": {
   154            "type": "integer"
   155          },
   156          "installedSize": {
   157            "type": "integer"
   158          },
   159          "pullDependencies": {
   160            "items": {
   161              "type": "string"
   162            },
   163            "type": "array"
   164          },
   165          "provides": {
   166            "items": {
   167              "type": "string"
   168            },
   169            "type": "array"
   170          },
   171          "pullChecksum": {
   172            "type": "string"
   173          },
   174          "gitCommitOfApkPort": {
   175            "type": "string"
   176          },
   177          "files": {
   178            "items": {
   179              "$ref": "#/$defs/ApkFileRecord"
   180            },
   181            "type": "array"
   182          }
   183        },
   184        "type": "object",
   185        "required": [
   186          "package",
   187          "originPackage",
   188          "maintainer",
   189          "version",
   190          "license",
   191          "architecture",
   192          "url",
   193          "description",
   194          "size",
   195          "installedSize",
   196          "pullDependencies",
   197          "provides",
   198          "pullChecksum",
   199          "gitCommitOfApkPort",
   200          "files"
   201        ]
   202      },
   203      "BinaryMetadata": {
   204        "properties": {
   205          "matches": {
   206            "items": {
   207              "$ref": "#/$defs/ClassifierMatch"
   208            },
   209            "type": "array"
   210          }
   211        },
   212        "type": "object",
   213        "required": [
   214          "matches"
   215        ]
   216      },
   217      "CargoPackageMetadata": {
   218        "properties": {
   219          "name": {
   220            "type": "string"
   221          },
   222          "version": {
   223            "type": "string"
   224          },
   225          "source": {
   226            "type": "string"
   227          },
   228          "checksum": {
   229            "type": "string"
   230          },
   231          "dependencies": {
   232            "items": {
   233              "type": "string"
   234            },
   235            "type": "array"
   236          }
   237        },
   238        "type": "object",
   239        "required": [
   240          "name",
   241          "version",
   242          "source",
   243          "checksum",
   244          "dependencies"
   245        ]
   246      },
   247      "ClassifierMatch": {
   248        "properties": {
   249          "classifier": {
   250            "type": "string"
   251          },
   252          "location": {
   253            "$ref": "#/$defs/Location"
   254          }
   255        },
   256        "type": "object",
   257        "required": [
   258          "classifier",
   259          "location"
   260        ]
   261      },
   262      "CocoapodsMetadata": {
   263        "properties": {
   264          "checksum": {
   265            "type": "string"
   266          }
   267        },
   268        "type": "object",
   269        "required": [
   270          "checksum"
   271        ]
   272      },
   273      "ConanLockMetadata": {
   274        "properties": {
   275          "ref": {
   276            "type": "string"
   277          },
   278          "package_id": {
   279            "type": "string"
   280          },
   281          "prev": {
   282            "type": "string"
   283          },
   284          "requires": {
   285            "type": "string"
   286          },
   287          "build_requires": {
   288            "type": "string"
   289          },
   290          "py_requires": {
   291            "type": "string"
   292          },
   293          "options": {
   294            "patternProperties": {
   295              ".*": {
   296                "type": "string"
   297              }
   298            },
   299            "type": "object"
   300          },
   301          "path": {
   302            "type": "string"
   303          },
   304          "context": {
   305            "type": "string"
   306          }
   307        },
   308        "type": "object",
   309        "required": [
   310          "ref"
   311        ]
   312      },
   313      "ConanMetadata": {
   314        "properties": {
   315          "ref": {
   316            "type": "string"
   317          }
   318        },
   319        "type": "object",
   320        "required": [
   321          "ref"
   322        ]
   323      },
   324      "Coordinates": {
   325        "properties": {
   326          "path": {
   327            "type": "string"
   328          },
   329          "layerID": {
   330            "type": "string"
   331          }
   332        },
   333        "type": "object",
   334        "required": [
   335          "path"
   336        ]
   337      },
   338      "DartPubMetadata": {
   339        "properties": {
   340          "name": {
   341            "type": "string"
   342          },
   343          "version": {
   344            "type": "string"
   345          },
   346          "hosted_url": {
   347            "type": "string"
   348          },
   349          "vcs_url": {
   350            "type": "string"
   351          }
   352        },
   353        "type": "object",
   354        "required": [
   355          "name",
   356          "version"
   357        ]
   358      },
   359      "Descriptor": {
   360        "properties": {
   361          "name": {
   362            "type": "string"
   363          },
   364          "version": {
   365            "type": "string"
   366          },
   367          "configuration": true
   368        },
   369        "type": "object",
   370        "required": [
   371          "name",
   372          "version"
   373        ]
   374      },
   375      "Digest": {
   376        "properties": {
   377          "algorithm": {
   378            "type": "string"
   379          },
   380          "value": {
   381            "type": "string"
   382          }
   383        },
   384        "type": "object",
   385        "required": [
   386          "algorithm",
   387          "value"
   388        ]
   389      },
   390      "Document": {
   391        "properties": {
   392          "artifacts": {
   393            "items": {
   394              "$ref": "#/$defs/Package"
   395            },
   396            "type": "array"
   397          },
   398          "artifactRelationships": {
   399            "items": {
   400              "$ref": "#/$defs/Relationship"
   401            },
   402            "type": "array"
   403          },
   404          "files": {
   405            "items": {
   406              "$ref": "#/$defs/File"
   407            },
   408            "type": "array"
   409          },
   410          "secrets": {
   411            "items": {
   412              "$ref": "#/$defs/Secrets"
   413            },
   414            "type": "array"
   415          },
   416          "source": {
   417            "$ref": "#/$defs/Source"
   418          },
   419          "distro": {
   420            "$ref": "#/$defs/LinuxRelease"
   421          },
   422          "descriptor": {
   423            "$ref": "#/$defs/Descriptor"
   424          },
   425          "schema": {
   426            "$ref": "#/$defs/Schema"
   427          }
   428        },
   429        "type": "object",
   430        "required": [
   431          "artifacts",
   432          "artifactRelationships",
   433          "source",
   434          "distro",
   435          "descriptor",
   436          "schema"
   437        ]
   438      },
   439      "DotnetDepsMetadata": {
   440        "properties": {
   441          "name": {
   442            "type": "string"
   443          },
   444          "version": {
   445            "type": "string"
   446          },
   447          "path": {
   448            "type": "string"
   449          },
   450          "sha512": {
   451            "type": "string"
   452          },
   453          "hashPath": {
   454            "type": "string"
   455          }
   456        },
   457        "type": "object",
   458        "required": [
   459          "name",
   460          "version",
   461          "path",
   462          "sha512",
   463          "hashPath"
   464        ]
   465      },
   466      "DpkgFileRecord": {
   467        "properties": {
   468          "path": {
   469            "type": "string"
   470          },
   471          "digest": {
   472            "$ref": "#/$defs/Digest"
   473          },
   474          "isConfigFile": {
   475            "type": "boolean"
   476          }
   477        },
   478        "type": "object",
   479        "required": [
   480          "path",
   481          "isConfigFile"
   482        ]
   483      },
   484      "DpkgMetadata": {
   485        "properties": {
   486          "package": {
   487            "type": "string"
   488          },
   489          "source": {
   490            "type": "string"
   491          },
   492          "version": {
   493            "type": "string"
   494          },
   495          "sourceVersion": {
   496            "type": "string"
   497          },
   498          "architecture": {
   499            "type": "string"
   500          },
   501          "maintainer": {
   502            "type": "string"
   503          },
   504          "installedSize": {
   505            "type": "integer"
   506          },
   507          "files": {
   508            "items": {
   509              "$ref": "#/$defs/DpkgFileRecord"
   510            },
   511            "type": "array"
   512          }
   513        },
   514        "type": "object",
   515        "required": [
   516          "package",
   517          "source",
   518          "version",
   519          "sourceVersion",
   520          "architecture",
   521          "maintainer",
   522          "installedSize",
   523          "files"
   524        ]
   525      },
   526      "File": {
   527        "properties": {
   528          "id": {
   529            "type": "string"
   530          },
   531          "location": {
   532            "$ref": "#/$defs/Coordinates"
   533          },
   534          "metadata": {
   535            "$ref": "#/$defs/FileMetadataEntry"
   536          },
   537          "contents": {
   538            "type": "string"
   539          },
   540          "digests": {
   541            "items": {
   542              "$ref": "#/$defs/Digest"
   543            },
   544            "type": "array"
   545          }
   546        },
   547        "type": "object",
   548        "required": [
   549          "id",
   550          "location"
   551        ]
   552      },
   553      "FileMetadataEntry": {
   554        "properties": {
   555          "mode": {
   556            "type": "integer"
   557          },
   558          "type": {
   559            "type": "string"
   560          },
   561          "linkDestination": {
   562            "type": "string"
   563          },
   564          "userID": {
   565            "type": "integer"
   566          },
   567          "groupID": {
   568            "type": "integer"
   569          },
   570          "mimeType": {
   571            "type": "string"
   572          }
   573        },
   574        "type": "object",
   575        "required": [
   576          "mode",
   577          "type",
   578          "userID",
   579          "groupID",
   580          "mimeType"
   581        ]
   582      },
   583      "GemMetadata": {
   584        "properties": {
   585          "name": {
   586            "type": "string"
   587          },
   588          "version": {
   589            "type": "string"
   590          },
   591          "files": {
   592            "items": {
   593              "type": "string"
   594            },
   595            "type": "array"
   596          },
   597          "authors": {
   598            "items": {
   599              "type": "string"
   600            },
   601            "type": "array"
   602          },
   603          "licenses": {
   604            "items": {
   605              "type": "string"
   606            },
   607            "type": "array"
   608          },
   609          "homepage": {
   610            "type": "string"
   611          }
   612        },
   613        "type": "object",
   614        "required": [
   615          "name",
   616          "version"
   617        ]
   618      },
   619      "GolangBinMetadata": {
   620        "properties": {
   621          "goBuildSettings": {
   622            "patternProperties": {
   623              ".*": {
   624                "type": "string"
   625              }
   626            },
   627            "type": "object"
   628          },
   629          "goCompiledVersion": {
   630            "type": "string"
   631          },
   632          "architecture": {
   633            "type": "string"
   634          },
   635          "h1Digest": {
   636            "type": "string"
   637          },
   638          "mainModule": {
   639            "type": "string"
   640          }
   641        },
   642        "type": "object",
   643        "required": [
   644          "goCompiledVersion",
   645          "architecture"
   646        ]
   647      },
   648      "GolangModMetadata": {
   649        "properties": {
   650          "h1Digest": {
   651            "type": "string"
   652          }
   653        },
   654        "type": "object"
   655      },
   656      "HackageMetadata": {
   657        "properties": {
   658          "name": {
   659            "type": "string"
   660          },
   661          "version": {
   662            "type": "string"
   663          },
   664          "pkgHash": {
   665            "type": "string"
   666          },
   667          "snapshotURL": {
   668            "type": "string"
   669          }
   670        },
   671        "type": "object",
   672        "required": [
   673          "name",
   674          "version"
   675        ]
   676      },
   677      "IDLikes": {
   678        "items": {
   679          "type": "string"
   680        },
   681        "type": "array"
   682      },
   683      "JavaManifest": {
   684        "properties": {
   685          "main": {
   686            "patternProperties": {
   687              ".*": {
   688                "type": "string"
   689              }
   690            },
   691            "type": "object"
   692          },
   693          "namedSections": {
   694            "patternProperties": {
   695              ".*": {
   696                "patternProperties": {
   697                  ".*": {
   698                    "type": "string"
   699                  }
   700                },
   701                "type": "object"
   702              }
   703            },
   704            "type": "object"
   705          }
   706        },
   707        "type": "object"
   708      },
   709      "JavaMetadata": {
   710        "properties": {
   711          "virtualPath": {
   712            "type": "string"
   713          },
   714          "manifest": {
   715            "$ref": "#/$defs/JavaManifest"
   716          },
   717          "pomProperties": {
   718            "$ref": "#/$defs/PomProperties"
   719          },
   720          "pomProject": {
   721            "$ref": "#/$defs/PomProject"
   722          },
   723          "digest": {
   724            "items": {
   725              "$ref": "#/$defs/Digest"
   726            },
   727            "type": "array"
   728          }
   729        },
   730        "type": "object",
   731        "required": [
   732          "virtualPath"
   733        ]
   734      },
   735      "KbPackageMetadata": {
   736        "properties": {
   737          "product_id": {
   738            "type": "string"
   739          },
   740          "kb": {
   741            "type": "string"
   742          }
   743        },
   744        "type": "object",
   745        "required": [
   746          "product_id",
   747          "kb"
   748        ]
   749      },
   750      "LinuxRelease": {
   751        "properties": {
   752          "prettyName": {
   753            "type": "string"
   754          },
   755          "name": {
   756            "type": "string"
   757          },
   758          "id": {
   759            "type": "string"
   760          },
   761          "idLike": {
   762            "$ref": "#/$defs/IDLikes"
   763          },
   764          "version": {
   765            "type": "string"
   766          },
   767          "versionID": {
   768            "type": "string"
   769          },
   770          "versionCodename": {
   771            "type": "string"
   772          },
   773          "buildID": {
   774            "type": "string"
   775          },
   776          "imageID": {
   777            "type": "string"
   778          },
   779          "imageVersion": {
   780            "type": "string"
   781          },
   782          "variant": {
   783            "type": "string"
   784          },
   785          "variantID": {
   786            "type": "string"
   787          },
   788          "homeURL": {
   789            "type": "string"
   790          },
   791          "supportURL": {
   792            "type": "string"
   793          },
   794          "bugReportURL": {
   795            "type": "string"
   796          },
   797          "privacyPolicyURL": {
   798            "type": "string"
   799          },
   800          "cpeName": {
   801            "type": "string"
   802          },
   803          "supportEnd": {
   804            "type": "string"
   805          }
   806        },
   807        "type": "object"
   808      },
   809      "Location": {
   810        "properties": {
   811          "path": {
   812            "type": "string"
   813          },
   814          "layerID": {
   815            "type": "string"
   816          },
   817          "virtualPath": {
   818            "type": "string"
   819          }
   820        },
   821        "type": "object",
   822        "required": [
   823          "path"
   824        ]
   825      },
   826      "MixLockMetadata": {
   827        "properties": {
   828          "name": {
   829            "type": "string"
   830          },
   831          "version": {
   832            "type": "string"
   833          },
   834          "pkgHash": {
   835            "type": "string"
   836          },
   837          "pkgHashExt": {
   838            "type": "string"
   839          }
   840        },
   841        "type": "object",
   842        "required": [
   843          "name",
   844          "version",
   845          "pkgHash",
   846          "pkgHashExt"
   847        ]
   848      },
   849      "NpmPackageJSONMetadata": {
   850        "properties": {
   851          "name": {
   852            "type": "string"
   853          },
   854          "version": {
   855            "type": "string"
   856          },
   857          "author": {
   858            "type": "string"
   859          },
   860          "licenses": {
   861            "items": {
   862              "type": "string"
   863            },
   864            "type": "array"
   865          },
   866          "homepage": {
   867            "type": "string"
   868          },
   869          "description": {
   870            "type": "string"
   871          },
   872          "url": {
   873            "type": "string"
   874          },
   875          "private": {
   876            "type": "boolean"
   877          }
   878        },
   879        "type": "object",
   880        "required": [
   881          "name",
   882          "version",
   883          "author",
   884          "licenses",
   885          "homepage",
   886          "description",
   887          "url",
   888          "private"
   889        ]
   890      },
   891      "NpmPackageLockJSONMetadata": {
   892        "properties": {
   893          "resolved": {
   894            "type": "string"
   895          },
   896          "integrity": {
   897            "type": "string"
   898          }
   899        },
   900        "type": "object",
   901        "required": [
   902          "resolved",
   903          "integrity"
   904        ]
   905      },
   906      "Package": {
   907        "properties": {
   908          "id": {
   909            "type": "string"
   910          },
   911          "name": {
   912            "type": "string"
   913          },
   914          "version": {
   915            "type": "string"
   916          },
   917          "type": {
   918            "type": "string"
   919          },
   920          "foundBy": {
   921            "type": "string"
   922          },
   923          "locations": {
   924            "items": {
   925              "$ref": "#/$defs/Coordinates"
   926            },
   927            "type": "array"
   928          },
   929          "licenses": {
   930            "items": {
   931              "type": "string"
   932            },
   933            "type": "array"
   934          },
   935          "language": {
   936            "type": "string"
   937          },
   938          "cpes": {
   939            "items": {
   940              "type": "string"
   941            },
   942            "type": "array"
   943          },
   944          "purl": {
   945            "type": "string"
   946          },
   947          "metadataType": {
   948            "type": "string"
   949          },
   950          "metadata": {
   951            "anyOf": [
   952              {
   953                "type": "null"
   954              },
   955              {
   956                "$ref": "#/$defs/AlpmMetadata"
   957              },
   958              {
   959                "$ref": "#/$defs/ApkMetadata"
   960              },
   961              {
   962                "$ref": "#/$defs/BinaryMetadata"
   963              },
   964              {
   965                "$ref": "#/$defs/CargoPackageMetadata"
   966              },
   967              {
   968                "$ref": "#/$defs/CocoapodsMetadata"
   969              },
   970              {
   971                "$ref": "#/$defs/ConanLockMetadata"
   972              },
   973              {
   974                "$ref": "#/$defs/ConanMetadata"
   975              },
   976              {
   977                "$ref": "#/$defs/DartPubMetadata"
   978              },
   979              {
   980                "$ref": "#/$defs/DotnetDepsMetadata"
   981              },
   982              {
   983                "$ref": "#/$defs/DpkgMetadata"
   984              },
   985              {
   986                "$ref": "#/$defs/GemMetadata"
   987              },
   988              {
   989                "$ref": "#/$defs/GolangBinMetadata"
   990              },
   991              {
   992                "$ref": "#/$defs/GolangModMetadata"
   993              },
   994              {
   995                "$ref": "#/$defs/HackageMetadata"
   996              },
   997              {
   998                "$ref": "#/$defs/JavaMetadata"
   999              },
  1000              {
  1001                "$ref": "#/$defs/KbPackageMetadata"
  1002              },
  1003              {
  1004                "$ref": "#/$defs/MixLockMetadata"
  1005              },
  1006              {
  1007                "$ref": "#/$defs/NpmPackageJSONMetadata"
  1008              },
  1009              {
  1010                "$ref": "#/$defs/NpmPackageLockJSONMetadata"
  1011              },
  1012              {
  1013                "$ref": "#/$defs/PhpComposerJSONMetadata"
  1014              },
  1015              {
  1016                "$ref": "#/$defs/PortageMetadata"
  1017              },
  1018              {
  1019                "$ref": "#/$defs/PythonPackageMetadata"
  1020              },
  1021              {
  1022                "$ref": "#/$defs/PythonPipfileLockMetadata"
  1023              },
  1024              {
  1025                "$ref": "#/$defs/RebarLockMetadata"
  1026              },
  1027              {
  1028                "$ref": "#/$defs/RpmMetadata"
  1029              }
  1030            ]
  1031          }
  1032        },
  1033        "type": "object",
  1034        "required": [
  1035          "id",
  1036          "name",
  1037          "version",
  1038          "type",
  1039          "foundBy",
  1040          "locations",
  1041          "licenses",
  1042          "language",
  1043          "cpes",
  1044          "purl"
  1045        ]
  1046      },
  1047      "PhpComposerAuthors": {
  1048        "properties": {
  1049          "name": {
  1050            "type": "string"
  1051          },
  1052          "email": {
  1053            "type": "string"
  1054          },
  1055          "homepage": {
  1056            "type": "string"
  1057          }
  1058        },
  1059        "type": "object",
  1060        "required": [
  1061          "name"
  1062        ]
  1063      },
  1064      "PhpComposerExternalReference": {
  1065        "properties": {
  1066          "type": {
  1067            "type": "string"
  1068          },
  1069          "url": {
  1070            "type": "string"
  1071          },
  1072          "reference": {
  1073            "type": "string"
  1074          },
  1075          "shasum": {
  1076            "type": "string"
  1077          }
  1078        },
  1079        "type": "object",
  1080        "required": [
  1081          "type",
  1082          "url",
  1083          "reference"
  1084        ]
  1085      },
  1086      "PhpComposerJSONMetadata": {
  1087        "properties": {
  1088          "name": {
  1089            "type": "string"
  1090          },
  1091          "version": {
  1092            "type": "string"
  1093          },
  1094          "source": {
  1095            "$ref": "#/$defs/PhpComposerExternalReference"
  1096          },
  1097          "dist": {
  1098            "$ref": "#/$defs/PhpComposerExternalReference"
  1099          },
  1100          "require": {
  1101            "patternProperties": {
  1102              ".*": {
  1103                "type": "string"
  1104              }
  1105            },
  1106            "type": "object"
  1107          },
  1108          "provide": {
  1109            "patternProperties": {
  1110              ".*": {
  1111                "type": "string"
  1112              }
  1113            },
  1114            "type": "object"
  1115          },
  1116          "require-dev": {
  1117            "patternProperties": {
  1118              ".*": {
  1119                "type": "string"
  1120              }
  1121            },
  1122            "type": "object"
  1123          },
  1124          "suggest": {
  1125            "patternProperties": {
  1126              ".*": {
  1127                "type": "string"
  1128              }
  1129            },
  1130            "type": "object"
  1131          },
  1132          "type": {
  1133            "type": "string"
  1134          },
  1135          "notification-url": {
  1136            "type": "string"
  1137          },
  1138          "bin": {
  1139            "items": {
  1140              "type": "string"
  1141            },
  1142            "type": "array"
  1143          },
  1144          "license": {
  1145            "items": {
  1146              "type": "string"
  1147            },
  1148            "type": "array"
  1149          },
  1150          "authors": {
  1151            "items": {
  1152              "$ref": "#/$defs/PhpComposerAuthors"
  1153            },
  1154            "type": "array"
  1155          },
  1156          "description": {
  1157            "type": "string"
  1158          },
  1159          "homepage": {
  1160            "type": "string"
  1161          },
  1162          "keywords": {
  1163            "items": {
  1164              "type": "string"
  1165            },
  1166            "type": "array"
  1167          },
  1168          "time": {
  1169            "type": "string"
  1170          }
  1171        },
  1172        "type": "object",
  1173        "required": [
  1174          "name",
  1175          "version",
  1176          "source",
  1177          "dist"
  1178        ]
  1179      },
  1180      "PomParent": {
  1181        "properties": {
  1182          "groupId": {
  1183            "type": "string"
  1184          },
  1185          "artifactId": {
  1186            "type": "string"
  1187          },
  1188          "version": {
  1189            "type": "string"
  1190          }
  1191        },
  1192        "type": "object",
  1193        "required": [
  1194          "groupId",
  1195          "artifactId",
  1196          "version"
  1197        ]
  1198      },
  1199      "PomProject": {
  1200        "properties": {
  1201          "path": {
  1202            "type": "string"
  1203          },
  1204          "parent": {
  1205            "$ref": "#/$defs/PomParent"
  1206          },
  1207          "groupId": {
  1208            "type": "string"
  1209          },
  1210          "artifactId": {
  1211            "type": "string"
  1212          },
  1213          "version": {
  1214            "type": "string"
  1215          },
  1216          "name": {
  1217            "type": "string"
  1218          },
  1219          "description": {
  1220            "type": "string"
  1221          },
  1222          "url": {
  1223            "type": "string"
  1224          }
  1225        },
  1226        "type": "object",
  1227        "required": [
  1228          "path",
  1229          "groupId",
  1230          "artifactId",
  1231          "version",
  1232          "name"
  1233        ]
  1234      },
  1235      "PomProperties": {
  1236        "properties": {
  1237          "path": {
  1238            "type": "string"
  1239          },
  1240          "name": {
  1241            "type": "string"
  1242          },
  1243          "groupId": {
  1244            "type": "string"
  1245          },
  1246          "artifactId": {
  1247            "type": "string"
  1248          },
  1249          "version": {
  1250            "type": "string"
  1251          },
  1252          "extraFields": {
  1253            "patternProperties": {
  1254              ".*": {
  1255                "type": "string"
  1256              }
  1257            },
  1258            "type": "object"
  1259          }
  1260        },
  1261        "type": "object",
  1262        "required": [
  1263          "path",
  1264          "name",
  1265          "groupId",
  1266          "artifactId",
  1267          "version"
  1268        ]
  1269      },
  1270      "PortageFileRecord": {
  1271        "properties": {
  1272          "path": {
  1273            "type": "string"
  1274          },
  1275          "digest": {
  1276            "$ref": "#/$defs/Digest"
  1277          }
  1278        },
  1279        "type": "object",
  1280        "required": [
  1281          "path"
  1282        ]
  1283      },
  1284      "PortageMetadata": {
  1285        "properties": {
  1286          "installedSize": {
  1287            "type": "integer"
  1288          },
  1289          "files": {
  1290            "items": {
  1291              "$ref": "#/$defs/PortageFileRecord"
  1292            },
  1293            "type": "array"
  1294          }
  1295        },
  1296        "type": "object",
  1297        "required": [
  1298          "installedSize",
  1299          "files"
  1300        ]
  1301      },
  1302      "PythonDirectURLOriginInfo": {
  1303        "properties": {
  1304          "url": {
  1305            "type": "string"
  1306          },
  1307          "commitId": {
  1308            "type": "string"
  1309          },
  1310          "vcs": {
  1311            "type": "string"
  1312          }
  1313        },
  1314        "type": "object",
  1315        "required": [
  1316          "url"
  1317        ]
  1318      },
  1319      "PythonFileDigest": {
  1320        "properties": {
  1321          "algorithm": {
  1322            "type": "string"
  1323          },
  1324          "value": {
  1325            "type": "string"
  1326          }
  1327        },
  1328        "type": "object",
  1329        "required": [
  1330          "algorithm",
  1331          "value"
  1332        ]
  1333      },
  1334      "PythonFileRecord": {
  1335        "properties": {
  1336          "path": {
  1337            "type": "string"
  1338          },
  1339          "digest": {
  1340            "$ref": "#/$defs/PythonFileDigest"
  1341          },
  1342          "size": {
  1343            "type": "string"
  1344          }
  1345        },
  1346        "type": "object",
  1347        "required": [
  1348          "path"
  1349        ]
  1350      },
  1351      "PythonPackageMetadata": {
  1352        "properties": {
  1353          "name": {
  1354            "type": "string"
  1355          },
  1356          "version": {
  1357            "type": "string"
  1358          },
  1359          "license": {
  1360            "type": "string"
  1361          },
  1362          "author": {
  1363            "type": "string"
  1364          },
  1365          "authorEmail": {
  1366            "type": "string"
  1367          },
  1368          "platform": {
  1369            "type": "string"
  1370          },
  1371          "files": {
  1372            "items": {
  1373              "$ref": "#/$defs/PythonFileRecord"
  1374            },
  1375            "type": "array"
  1376          },
  1377          "sitePackagesRootPath": {
  1378            "type": "string"
  1379          },
  1380          "topLevelPackages": {
  1381            "items": {
  1382              "type": "string"
  1383            },
  1384            "type": "array"
  1385          },
  1386          "directUrlOrigin": {
  1387            "$ref": "#/$defs/PythonDirectURLOriginInfo"
  1388          }
  1389        },
  1390        "type": "object",
  1391        "required": [
  1392          "name",
  1393          "version",
  1394          "license",
  1395          "author",
  1396          "authorEmail",
  1397          "platform",
  1398          "sitePackagesRootPath"
  1399        ]
  1400      },
  1401      "PythonPipfileLockMetadata": {
  1402        "properties": {
  1403          "hashes": {
  1404            "items": {
  1405              "type": "string"
  1406            },
  1407            "type": "array"
  1408          },
  1409          "index": {
  1410            "type": "string"
  1411          }
  1412        },
  1413        "type": "object",
  1414        "required": [
  1415          "hashes",
  1416          "index"
  1417        ]
  1418      },
  1419      "RebarLockMetadata": {
  1420        "properties": {
  1421          "name": {
  1422            "type": "string"
  1423          },
  1424          "version": {
  1425            "type": "string"
  1426          },
  1427          "pkgHash": {
  1428            "type": "string"
  1429          },
  1430          "pkgHashExt": {
  1431            "type": "string"
  1432          }
  1433        },
  1434        "type": "object",
  1435        "required": [
  1436          "name",
  1437          "version",
  1438          "pkgHash",
  1439          "pkgHashExt"
  1440        ]
  1441      },
  1442      "Relationship": {
  1443        "properties": {
  1444          "parent": {
  1445            "type": "string"
  1446          },
  1447          "child": {
  1448            "type": "string"
  1449          },
  1450          "type": {
  1451            "type": "string"
  1452          },
  1453          "metadata": true
  1454        },
  1455        "type": "object",
  1456        "required": [
  1457          "parent",
  1458          "child",
  1459          "type"
  1460        ]
  1461      },
  1462      "RpmMetadata": {
  1463        "properties": {
  1464          "name": {
  1465            "type": "string"
  1466          },
  1467          "version": {
  1468            "type": "string"
  1469          },
  1470          "epoch": {
  1471            "oneOf": [
  1472              {
  1473                "type": "integer"
  1474              },
  1475              {
  1476                "type": "null"
  1477              }
  1478            ]
  1479          },
  1480          "architecture": {
  1481            "type": "string"
  1482          },
  1483          "release": {
  1484            "type": "string"
  1485          },
  1486          "sourceRpm": {
  1487            "type": "string"
  1488          },
  1489          "size": {
  1490            "type": "integer"
  1491          },
  1492          "license": {
  1493            "type": "string"
  1494          },
  1495          "vendor": {
  1496            "type": "string"
  1497          },
  1498          "modularityLabel": {
  1499            "type": "string"
  1500          },
  1501          "files": {
  1502            "items": {
  1503              "$ref": "#/$defs/RpmdbFileRecord"
  1504            },
  1505            "type": "array"
  1506          }
  1507        },
  1508        "type": "object",
  1509        "required": [
  1510          "name",
  1511          "version",
  1512          "epoch",
  1513          "architecture",
  1514          "release",
  1515          "sourceRpm",
  1516          "size",
  1517          "license",
  1518          "vendor",
  1519          "modularityLabel",
  1520          "files"
  1521        ]
  1522      },
  1523      "RpmdbFileRecord": {
  1524        "properties": {
  1525          "path": {
  1526            "type": "string"
  1527          },
  1528          "mode": {
  1529            "type": "integer"
  1530          },
  1531          "size": {
  1532            "type": "integer"
  1533          },
  1534          "digest": {
  1535            "$ref": "#/$defs/Digest"
  1536          },
  1537          "userName": {
  1538            "type": "string"
  1539          },
  1540          "groupName": {
  1541            "type": "string"
  1542          },
  1543          "flags": {
  1544            "type": "string"
  1545          }
  1546        },
  1547        "type": "object",
  1548        "required": [
  1549          "path",
  1550          "mode",
  1551          "size",
  1552          "digest",
  1553          "userName",
  1554          "groupName",
  1555          "flags"
  1556        ]
  1557      },
  1558      "Schema": {
  1559        "properties": {
  1560          "version": {
  1561            "type": "string"
  1562          },
  1563          "url": {
  1564            "type": "string"
  1565          }
  1566        },
  1567        "type": "object",
  1568        "required": [
  1569          "version",
  1570          "url"
  1571        ]
  1572      },
  1573      "SearchResult": {
  1574        "properties": {
  1575          "classification": {
  1576            "type": "string"
  1577          },
  1578          "lineNumber": {
  1579            "type": "integer"
  1580          },
  1581          "lineOffset": {
  1582            "type": "integer"
  1583          },
  1584          "seekPosition": {
  1585            "type": "integer"
  1586          },
  1587          "length": {
  1588            "type": "integer"
  1589          },
  1590          "value": {
  1591            "type": "string"
  1592          }
  1593        },
  1594        "type": "object",
  1595        "required": [
  1596          "classification",
  1597          "lineNumber",
  1598          "lineOffset",
  1599          "seekPosition",
  1600          "length"
  1601        ]
  1602      },
  1603      "Secrets": {
  1604        "properties": {
  1605          "location": {
  1606            "$ref": "#/$defs/Coordinates"
  1607          },
  1608          "secrets": {
  1609            "items": {
  1610              "$ref": "#/$defs/SearchResult"
  1611            },
  1612            "type": "array"
  1613          }
  1614        },
  1615        "type": "object",
  1616        "required": [
  1617          "location",
  1618          "secrets"
  1619        ]
  1620      },
  1621      "Source": {
  1622        "properties": {
  1623          "id": {
  1624            "type": "string"
  1625          },
  1626          "type": {
  1627            "type": "string"
  1628          },
  1629          "target": true
  1630        },
  1631        "type": "object",
  1632        "required": [
  1633          "id",
  1634          "type",
  1635          "target"
  1636        ]
  1637      }
  1638    }
  1639  }