github.com/anchore/syft@v1.38.2/schema/json/schema-16.0.25.json (about)

     1  {
     2    "$schema": "https://json-schema.org/draft/2020-12/schema",
     3    "$id": "anchore.io/schema/syft/json/16.0.25/document",
     4    "$ref": "#/$defs/Document",
     5    "$defs": {
     6      "AlpmDbEntry": {
     7        "properties": {
     8          "basepackage": {
     9            "type": "string"
    10          },
    11          "package": {
    12            "type": "string"
    13          },
    14          "version": {
    15            "type": "string"
    16          },
    17          "description": {
    18            "type": "string"
    19          },
    20          "architecture": {
    21            "type": "string"
    22          },
    23          "size": {
    24            "type": "integer"
    25          },
    26          "packager": {
    27            "type": "string"
    28          },
    29          "url": {
    30            "type": "string"
    31          },
    32          "validation": {
    33            "type": "string"
    34          },
    35          "reason": {
    36            "type": "integer"
    37          },
    38          "files": {
    39            "items": {
    40              "$ref": "#/$defs/AlpmFileRecord"
    41            },
    42            "type": "array"
    43          },
    44          "backup": {
    45            "items": {
    46              "$ref": "#/$defs/AlpmFileRecord"
    47            },
    48            "type": "array"
    49          },
    50          "provides": {
    51            "items": {
    52              "type": "string"
    53            },
    54            "type": "array"
    55          },
    56          "depends": {
    57            "items": {
    58              "type": "string"
    59            },
    60            "type": "array"
    61          }
    62        },
    63        "type": "object",
    64        "required": [
    65          "basepackage",
    66          "package",
    67          "version",
    68          "description",
    69          "architecture",
    70          "size",
    71          "packager",
    72          "url",
    73          "validation",
    74          "reason",
    75          "files",
    76          "backup"
    77        ]
    78      },
    79      "AlpmFileRecord": {
    80        "properties": {
    81          "path": {
    82            "type": "string"
    83          },
    84          "type": {
    85            "type": "string"
    86          },
    87          "uid": {
    88            "type": "string"
    89          },
    90          "gid": {
    91            "type": "string"
    92          },
    93          "time": {
    94            "type": "string",
    95            "format": "date-time"
    96          },
    97          "size": {
    98            "type": "string"
    99          },
   100          "link": {
   101            "type": "string"
   102          },
   103          "digest": {
   104            "items": {
   105              "$ref": "#/$defs/Digest"
   106            },
   107            "type": "array"
   108          }
   109        },
   110        "type": "object"
   111      },
   112      "ApkDbEntry": {
   113        "properties": {
   114          "package": {
   115            "type": "string"
   116          },
   117          "originPackage": {
   118            "type": "string"
   119          },
   120          "maintainer": {
   121            "type": "string"
   122          },
   123          "version": {
   124            "type": "string"
   125          },
   126          "architecture": {
   127            "type": "string"
   128          },
   129          "url": {
   130            "type": "string"
   131          },
   132          "description": {
   133            "type": "string"
   134          },
   135          "size": {
   136            "type": "integer"
   137          },
   138          "installedSize": {
   139            "type": "integer"
   140          },
   141          "pullDependencies": {
   142            "items": {
   143              "type": "string"
   144            },
   145            "type": "array"
   146          },
   147          "provides": {
   148            "items": {
   149              "type": "string"
   150            },
   151            "type": "array"
   152          },
   153          "pullChecksum": {
   154            "type": "string"
   155          },
   156          "gitCommitOfApkPort": {
   157            "type": "string"
   158          },
   159          "files": {
   160            "items": {
   161              "$ref": "#/$defs/ApkFileRecord"
   162            },
   163            "type": "array"
   164          }
   165        },
   166        "type": "object",
   167        "required": [
   168          "package",
   169          "originPackage",
   170          "maintainer",
   171          "version",
   172          "architecture",
   173          "url",
   174          "description",
   175          "size",
   176          "installedSize",
   177          "pullDependencies",
   178          "provides",
   179          "pullChecksum",
   180          "gitCommitOfApkPort",
   181          "files"
   182        ]
   183      },
   184      "ApkFileRecord": {
   185        "properties": {
   186          "path": {
   187            "type": "string"
   188          },
   189          "ownerUid": {
   190            "type": "string"
   191          },
   192          "ownerGid": {
   193            "type": "string"
   194          },
   195          "permissions": {
   196            "type": "string"
   197          },
   198          "digest": {
   199            "$ref": "#/$defs/Digest"
   200          }
   201        },
   202        "type": "object",
   203        "required": [
   204          "path"
   205        ]
   206      },
   207      "BinarySignature": {
   208        "properties": {
   209          "matches": {
   210            "items": {
   211              "$ref": "#/$defs/ClassifierMatch"
   212            },
   213            "type": "array"
   214          }
   215        },
   216        "type": "object",
   217        "required": [
   218          "matches"
   219        ]
   220      },
   221      "BitnamiSbomEntry": {
   222        "properties": {
   223          "name": {
   224            "type": "string"
   225          },
   226          "arch": {
   227            "type": "string"
   228          },
   229          "distro": {
   230            "type": "string"
   231          },
   232          "revision": {
   233            "type": "string"
   234          },
   235          "version": {
   236            "type": "string"
   237          },
   238          "path": {
   239            "type": "string"
   240          },
   241          "files": {
   242            "items": {
   243              "type": "string"
   244            },
   245            "type": "array"
   246          }
   247        },
   248        "type": "object",
   249        "required": [
   250          "name",
   251          "arch",
   252          "distro",
   253          "revision",
   254          "version",
   255          "path",
   256          "files"
   257        ]
   258      },
   259      "CConanFileEntry": {
   260        "properties": {
   261          "ref": {
   262            "type": "string"
   263          }
   264        },
   265        "type": "object",
   266        "required": [
   267          "ref"
   268        ]
   269      },
   270      "CConanInfoEntry": {
   271        "properties": {
   272          "ref": {
   273            "type": "string"
   274          },
   275          "package_id": {
   276            "type": "string"
   277          }
   278        },
   279        "type": "object",
   280        "required": [
   281          "ref"
   282        ]
   283      },
   284      "CConanLockEntry": {
   285        "properties": {
   286          "ref": {
   287            "type": "string"
   288          },
   289          "package_id": {
   290            "type": "string"
   291          },
   292          "prev": {
   293            "type": "string"
   294          },
   295          "requires": {
   296            "items": {
   297              "type": "string"
   298            },
   299            "type": "array"
   300          },
   301          "build_requires": {
   302            "items": {
   303              "type": "string"
   304            },
   305            "type": "array"
   306          },
   307          "py_requires": {
   308            "items": {
   309              "type": "string"
   310            },
   311            "type": "array"
   312          },
   313          "options": {
   314            "$ref": "#/$defs/KeyValues"
   315          },
   316          "path": {
   317            "type": "string"
   318          },
   319          "context": {
   320            "type": "string"
   321          }
   322        },
   323        "type": "object",
   324        "required": [
   325          "ref"
   326        ]
   327      },
   328      "CConanLockV2Entry": {
   329        "properties": {
   330          "ref": {
   331            "type": "string"
   332          },
   333          "packageID": {
   334            "type": "string"
   335          },
   336          "username": {
   337            "type": "string"
   338          },
   339          "channel": {
   340            "type": "string"
   341          },
   342          "recipeRevision": {
   343            "type": "string"
   344          },
   345          "packageRevision": {
   346            "type": "string"
   347          },
   348          "timestamp": {
   349            "type": "string"
   350          }
   351        },
   352        "type": "object",
   353        "required": [
   354          "ref"
   355        ]
   356      },
   357      "CPE": {
   358        "properties": {
   359          "cpe": {
   360            "type": "string"
   361          },
   362          "source": {
   363            "type": "string"
   364          }
   365        },
   366        "type": "object",
   367        "required": [
   368          "cpe"
   369        ]
   370      },
   371      "ClassifierMatch": {
   372        "properties": {
   373          "classifier": {
   374            "type": "string"
   375          },
   376          "location": {
   377            "$ref": "#/$defs/Location"
   378          }
   379        },
   380        "type": "object",
   381        "required": [
   382          "classifier",
   383          "location"
   384        ]
   385      },
   386      "CocoaPodfileLockEntry": {
   387        "properties": {
   388          "checksum": {
   389            "type": "string"
   390          }
   391        },
   392        "type": "object",
   393        "required": [
   394          "checksum"
   395        ]
   396      },
   397      "Coordinates": {
   398        "properties": {
   399          "path": {
   400            "type": "string"
   401          },
   402          "layerID": {
   403            "type": "string"
   404          }
   405        },
   406        "type": "object",
   407        "required": [
   408          "path"
   409        ]
   410      },
   411      "DartPubspecLockEntry": {
   412        "properties": {
   413          "name": {
   414            "type": "string"
   415          },
   416          "version": {
   417            "type": "string"
   418          },
   419          "hosted_url": {
   420            "type": "string"
   421          },
   422          "vcs_url": {
   423            "type": "string"
   424          }
   425        },
   426        "type": "object",
   427        "required": [
   428          "name",
   429          "version"
   430        ]
   431      },
   432      "Descriptor": {
   433        "properties": {
   434          "name": {
   435            "type": "string"
   436          },
   437          "version": {
   438            "type": "string"
   439          },
   440          "configuration": true
   441        },
   442        "type": "object",
   443        "required": [
   444          "name",
   445          "version"
   446        ]
   447      },
   448      "Digest": {
   449        "properties": {
   450          "algorithm": {
   451            "type": "string"
   452          },
   453          "value": {
   454            "type": "string"
   455          }
   456        },
   457        "type": "object",
   458        "required": [
   459          "algorithm",
   460          "value"
   461        ]
   462      },
   463      "Document": {
   464        "properties": {
   465          "artifacts": {
   466            "items": {
   467              "$ref": "#/$defs/Package"
   468            },
   469            "type": "array"
   470          },
   471          "artifactRelationships": {
   472            "items": {
   473              "$ref": "#/$defs/Relationship"
   474            },
   475            "type": "array"
   476          },
   477          "files": {
   478            "items": {
   479              "$ref": "#/$defs/File"
   480            },
   481            "type": "array"
   482          },
   483          "source": {
   484            "$ref": "#/$defs/Source"
   485          },
   486          "distro": {
   487            "$ref": "#/$defs/LinuxRelease"
   488          },
   489          "descriptor": {
   490            "$ref": "#/$defs/Descriptor"
   491          },
   492          "schema": {
   493            "$ref": "#/$defs/Schema"
   494          }
   495        },
   496        "type": "object",
   497        "required": [
   498          "artifacts",
   499          "artifactRelationships",
   500          "source",
   501          "distro",
   502          "descriptor",
   503          "schema"
   504        ]
   505      },
   506      "DotnetDepsEntry": {
   507        "properties": {
   508          "name": {
   509            "type": "string"
   510          },
   511          "version": {
   512            "type": "string"
   513          },
   514          "path": {
   515            "type": "string"
   516          },
   517          "sha512": {
   518            "type": "string"
   519          },
   520          "hashPath": {
   521            "type": "string"
   522          },
   523          "executables": {
   524            "patternProperties": {
   525              ".*": {
   526                "$ref": "#/$defs/DotnetPortableExecutableEntry"
   527              }
   528            },
   529            "type": "object"
   530          }
   531        },
   532        "type": "object",
   533        "required": [
   534          "name",
   535          "version",
   536          "path",
   537          "sha512",
   538          "hashPath"
   539        ]
   540      },
   541      "DotnetPackagesLockEntry": {
   542        "properties": {
   543          "name": {
   544            "type": "string"
   545          },
   546          "version": {
   547            "type": "string"
   548          },
   549          "contentHash": {
   550            "type": "string"
   551          },
   552          "type": {
   553            "type": "string"
   554          }
   555        },
   556        "type": "object",
   557        "required": [
   558          "name",
   559          "version",
   560          "contentHash",
   561          "type"
   562        ]
   563      },
   564      "DotnetPortableExecutableEntry": {
   565        "properties": {
   566          "assemblyVersion": {
   567            "type": "string"
   568          },
   569          "legalCopyright": {
   570            "type": "string"
   571          },
   572          "comments": {
   573            "type": "string"
   574          },
   575          "internalName": {
   576            "type": "string"
   577          },
   578          "companyName": {
   579            "type": "string"
   580          },
   581          "productName": {
   582            "type": "string"
   583          },
   584          "productVersion": {
   585            "type": "string"
   586          }
   587        },
   588        "type": "object",
   589        "required": [
   590          "assemblyVersion",
   591          "legalCopyright",
   592          "companyName",
   593          "productName",
   594          "productVersion"
   595        ]
   596      },
   597      "DpkgArchiveEntry": {
   598        "properties": {
   599          "package": {
   600            "type": "string"
   601          },
   602          "source": {
   603            "type": "string"
   604          },
   605          "version": {
   606            "type": "string"
   607          },
   608          "sourceVersion": {
   609            "type": "string"
   610          },
   611          "architecture": {
   612            "type": "string"
   613          },
   614          "maintainer": {
   615            "type": "string"
   616          },
   617          "installedSize": {
   618            "type": "integer"
   619          },
   620          "provides": {
   621            "items": {
   622              "type": "string"
   623            },
   624            "type": "array"
   625          },
   626          "depends": {
   627            "items": {
   628              "type": "string"
   629            },
   630            "type": "array"
   631          },
   632          "preDepends": {
   633            "items": {
   634              "type": "string"
   635            },
   636            "type": "array"
   637          },
   638          "files": {
   639            "items": {
   640              "$ref": "#/$defs/DpkgFileRecord"
   641            },
   642            "type": "array"
   643          }
   644        },
   645        "type": "object",
   646        "required": [
   647          "package",
   648          "source",
   649          "version",
   650          "sourceVersion",
   651          "architecture",
   652          "maintainer",
   653          "installedSize",
   654          "files"
   655        ]
   656      },
   657      "DpkgDbEntry": {
   658        "properties": {
   659          "package": {
   660            "type": "string"
   661          },
   662          "source": {
   663            "type": "string"
   664          },
   665          "version": {
   666            "type": "string"
   667          },
   668          "sourceVersion": {
   669            "type": "string"
   670          },
   671          "architecture": {
   672            "type": "string"
   673          },
   674          "maintainer": {
   675            "type": "string"
   676          },
   677          "installedSize": {
   678            "type": "integer"
   679          },
   680          "provides": {
   681            "items": {
   682              "type": "string"
   683            },
   684            "type": "array"
   685          },
   686          "depends": {
   687            "items": {
   688              "type": "string"
   689            },
   690            "type": "array"
   691          },
   692          "preDepends": {
   693            "items": {
   694              "type": "string"
   695            },
   696            "type": "array"
   697          },
   698          "files": {
   699            "items": {
   700              "$ref": "#/$defs/DpkgFileRecord"
   701            },
   702            "type": "array"
   703          }
   704        },
   705        "type": "object",
   706        "required": [
   707          "package",
   708          "source",
   709          "version",
   710          "sourceVersion",
   711          "architecture",
   712          "maintainer",
   713          "installedSize",
   714          "files"
   715        ]
   716      },
   717      "DpkgFileRecord": {
   718        "properties": {
   719          "path": {
   720            "type": "string"
   721          },
   722          "digest": {
   723            "$ref": "#/$defs/Digest"
   724          },
   725          "isConfigFile": {
   726            "type": "boolean"
   727          }
   728        },
   729        "type": "object",
   730        "required": [
   731          "path",
   732          "isConfigFile"
   733        ]
   734      },
   735      "ELFSecurityFeatures": {
   736        "properties": {
   737          "symbolTableStripped": {
   738            "type": "boolean"
   739          },
   740          "stackCanary": {
   741            "type": "boolean"
   742          },
   743          "nx": {
   744            "type": "boolean"
   745          },
   746          "relRO": {
   747            "type": "string"
   748          },
   749          "pie": {
   750            "type": "boolean"
   751          },
   752          "dso": {
   753            "type": "boolean"
   754          },
   755          "safeStack": {
   756            "type": "boolean"
   757          },
   758          "cfi": {
   759            "type": "boolean"
   760          },
   761          "fortify": {
   762            "type": "boolean"
   763          }
   764        },
   765        "type": "object",
   766        "required": [
   767          "symbolTableStripped",
   768          "nx",
   769          "relRO",
   770          "pie",
   771          "dso"
   772        ]
   773      },
   774      "ElfBinaryPackageNoteJsonPayload": {
   775        "properties": {
   776          "type": {
   777            "type": "string"
   778          },
   779          "architecture": {
   780            "type": "string"
   781          },
   782          "osCPE": {
   783            "type": "string"
   784          },
   785          "os": {
   786            "type": "string"
   787          },
   788          "osVersion": {
   789            "type": "string"
   790          },
   791          "system": {
   792            "type": "string"
   793          },
   794          "vendor": {
   795            "type": "string"
   796          },
   797          "sourceRepo": {
   798            "type": "string"
   799          },
   800          "commit": {
   801            "type": "string"
   802          }
   803        },
   804        "type": "object"
   805      },
   806      "ElixirMixLockEntry": {
   807        "properties": {
   808          "name": {
   809            "type": "string"
   810          },
   811          "version": {
   812            "type": "string"
   813          },
   814          "pkgHash": {
   815            "type": "string"
   816          },
   817          "pkgHashExt": {
   818            "type": "string"
   819          }
   820        },
   821        "type": "object",
   822        "required": [
   823          "name",
   824          "version",
   825          "pkgHash",
   826          "pkgHashExt"
   827        ]
   828      },
   829      "ErlangRebarLockEntry": {
   830        "properties": {
   831          "name": {
   832            "type": "string"
   833          },
   834          "version": {
   835            "type": "string"
   836          },
   837          "pkgHash": {
   838            "type": "string"
   839          },
   840          "pkgHashExt": {
   841            "type": "string"
   842          }
   843        },
   844        "type": "object",
   845        "required": [
   846          "name",
   847          "version",
   848          "pkgHash",
   849          "pkgHashExt"
   850        ]
   851      },
   852      "Executable": {
   853        "properties": {
   854          "format": {
   855            "type": "string"
   856          },
   857          "hasExports": {
   858            "type": "boolean"
   859          },
   860          "hasEntrypoint": {
   861            "type": "boolean"
   862          },
   863          "importedLibraries": {
   864            "items": {
   865              "type": "string"
   866            },
   867            "type": "array"
   868          },
   869          "elfSecurityFeatures": {
   870            "$ref": "#/$defs/ELFSecurityFeatures"
   871          }
   872        },
   873        "type": "object",
   874        "required": [
   875          "format",
   876          "hasExports",
   877          "hasEntrypoint",
   878          "importedLibraries"
   879        ]
   880      },
   881      "File": {
   882        "properties": {
   883          "id": {
   884            "type": "string"
   885          },
   886          "location": {
   887            "$ref": "#/$defs/Coordinates"
   888          },
   889          "metadata": {
   890            "$ref": "#/$defs/FileMetadataEntry"
   891          },
   892          "contents": {
   893            "type": "string"
   894          },
   895          "digests": {
   896            "items": {
   897              "$ref": "#/$defs/Digest"
   898            },
   899            "type": "array"
   900          },
   901          "licenses": {
   902            "items": {
   903              "$ref": "#/$defs/FileLicense"
   904            },
   905            "type": "array"
   906          },
   907          "executable": {
   908            "$ref": "#/$defs/Executable"
   909          },
   910          "unknowns": {
   911            "items": {
   912              "type": "string"
   913            },
   914            "type": "array"
   915          }
   916        },
   917        "type": "object",
   918        "required": [
   919          "id",
   920          "location"
   921        ]
   922      },
   923      "FileLicense": {
   924        "properties": {
   925          "value": {
   926            "type": "string"
   927          },
   928          "spdxExpression": {
   929            "type": "string"
   930          },
   931          "type": {
   932            "type": "string"
   933          },
   934          "evidence": {
   935            "$ref": "#/$defs/FileLicenseEvidence"
   936          }
   937        },
   938        "type": "object",
   939        "required": [
   940          "value",
   941          "spdxExpression",
   942          "type"
   943        ]
   944      },
   945      "FileLicenseEvidence": {
   946        "properties": {
   947          "confidence": {
   948            "type": "integer"
   949          },
   950          "offset": {
   951            "type": "integer"
   952          },
   953          "extent": {
   954            "type": "integer"
   955          }
   956        },
   957        "type": "object",
   958        "required": [
   959          "confidence",
   960          "offset",
   961          "extent"
   962        ]
   963      },
   964      "FileMetadataEntry": {
   965        "properties": {
   966          "mode": {
   967            "type": "integer"
   968          },
   969          "type": {
   970            "type": "string"
   971          },
   972          "linkDestination": {
   973            "type": "string"
   974          },
   975          "userID": {
   976            "type": "integer"
   977          },
   978          "groupID": {
   979            "type": "integer"
   980          },
   981          "mimeType": {
   982            "type": "string"
   983          },
   984          "size": {
   985            "type": "integer"
   986          }
   987        },
   988        "type": "object",
   989        "required": [
   990          "mode",
   991          "type",
   992          "userID",
   993          "groupID",
   994          "mimeType",
   995          "size"
   996        ]
   997      },
   998      "GithubActionsUseStatement": {
   999        "properties": {
  1000          "value": {
  1001            "type": "string"
  1002          },
  1003          "comment": {
  1004            "type": "string"
  1005          }
  1006        },
  1007        "type": "object",
  1008        "required": [
  1009          "value"
  1010        ]
  1011      },
  1012      "GoModuleBuildinfoEntry": {
  1013        "properties": {
  1014          "goBuildSettings": {
  1015            "$ref": "#/$defs/KeyValues"
  1016          },
  1017          "goCompiledVersion": {
  1018            "type": "string"
  1019          },
  1020          "architecture": {
  1021            "type": "string"
  1022          },
  1023          "h1Digest": {
  1024            "type": "string"
  1025          },
  1026          "mainModule": {
  1027            "type": "string"
  1028          },
  1029          "goCryptoSettings": {
  1030            "items": {
  1031              "type": "string"
  1032            },
  1033            "type": "array"
  1034          },
  1035          "goExperiments": {
  1036            "items": {
  1037              "type": "string"
  1038            },
  1039            "type": "array"
  1040          }
  1041        },
  1042        "type": "object",
  1043        "required": [
  1044          "goCompiledVersion",
  1045          "architecture"
  1046        ]
  1047      },
  1048      "GoModuleEntry": {
  1049        "properties": {
  1050          "h1Digest": {
  1051            "type": "string"
  1052          }
  1053        },
  1054        "type": "object"
  1055      },
  1056      "HaskellHackageStackEntry": {
  1057        "properties": {
  1058          "pkgHash": {
  1059            "type": "string"
  1060          }
  1061        },
  1062        "type": "object"
  1063      },
  1064      "HaskellHackageStackLockEntry": {
  1065        "properties": {
  1066          "pkgHash": {
  1067            "type": "string"
  1068          },
  1069          "snapshotURL": {
  1070            "type": "string"
  1071          }
  1072        },
  1073        "type": "object"
  1074      },
  1075      "IDLikes": {
  1076        "items": {
  1077          "type": "string"
  1078        },
  1079        "type": "array"
  1080      },
  1081      "JavaArchive": {
  1082        "properties": {
  1083          "virtualPath": {
  1084            "type": "string"
  1085          },
  1086          "manifest": {
  1087            "$ref": "#/$defs/JavaManifest"
  1088          },
  1089          "pomProperties": {
  1090            "$ref": "#/$defs/JavaPomProperties"
  1091          },
  1092          "pomProject": {
  1093            "$ref": "#/$defs/JavaPomProject"
  1094          },
  1095          "digest": {
  1096            "items": {
  1097              "$ref": "#/$defs/Digest"
  1098            },
  1099            "type": "array"
  1100          }
  1101        },
  1102        "type": "object",
  1103        "required": [
  1104          "virtualPath"
  1105        ]
  1106      },
  1107      "JavaJvmInstallation": {
  1108        "properties": {
  1109          "release": {
  1110            "$ref": "#/$defs/JavaVMRelease"
  1111          },
  1112          "files": {
  1113            "items": {
  1114              "type": "string"
  1115            },
  1116            "type": "array"
  1117          }
  1118        },
  1119        "type": "object",
  1120        "required": [
  1121          "release",
  1122          "files"
  1123        ]
  1124      },
  1125      "JavaManifest": {
  1126        "properties": {
  1127          "main": {
  1128            "$ref": "#/$defs/KeyValues"
  1129          },
  1130          "sections": {
  1131            "items": {
  1132              "$ref": "#/$defs/KeyValues"
  1133            },
  1134            "type": "array"
  1135          }
  1136        },
  1137        "type": "object"
  1138      },
  1139      "JavaPomParent": {
  1140        "properties": {
  1141          "groupId": {
  1142            "type": "string"
  1143          },
  1144          "artifactId": {
  1145            "type": "string"
  1146          },
  1147          "version": {
  1148            "type": "string"
  1149          }
  1150        },
  1151        "type": "object",
  1152        "required": [
  1153          "groupId",
  1154          "artifactId",
  1155          "version"
  1156        ]
  1157      },
  1158      "JavaPomProject": {
  1159        "properties": {
  1160          "path": {
  1161            "type": "string"
  1162          },
  1163          "parent": {
  1164            "$ref": "#/$defs/JavaPomParent"
  1165          },
  1166          "groupId": {
  1167            "type": "string"
  1168          },
  1169          "artifactId": {
  1170            "type": "string"
  1171          },
  1172          "version": {
  1173            "type": "string"
  1174          },
  1175          "name": {
  1176            "type": "string"
  1177          },
  1178          "description": {
  1179            "type": "string"
  1180          },
  1181          "url": {
  1182            "type": "string"
  1183          }
  1184        },
  1185        "type": "object",
  1186        "required": [
  1187          "path",
  1188          "groupId",
  1189          "artifactId",
  1190          "version",
  1191          "name"
  1192        ]
  1193      },
  1194      "JavaPomProperties": {
  1195        "properties": {
  1196          "path": {
  1197            "type": "string"
  1198          },
  1199          "name": {
  1200            "type": "string"
  1201          },
  1202          "groupId": {
  1203            "type": "string"
  1204          },
  1205          "artifactId": {
  1206            "type": "string"
  1207          },
  1208          "version": {
  1209            "type": "string"
  1210          },
  1211          "scope": {
  1212            "type": "string"
  1213          },
  1214          "extraFields": {
  1215            "patternProperties": {
  1216              ".*": {
  1217                "type": "string"
  1218              }
  1219            },
  1220            "type": "object"
  1221          }
  1222        },
  1223        "type": "object",
  1224        "required": [
  1225          "path",
  1226          "name",
  1227          "groupId",
  1228          "artifactId",
  1229          "version"
  1230        ]
  1231      },
  1232      "JavaVMRelease": {
  1233        "properties": {
  1234          "implementor": {
  1235            "type": "string"
  1236          },
  1237          "implementorVersion": {
  1238            "type": "string"
  1239          },
  1240          "javaRuntimeVersion": {
  1241            "type": "string"
  1242          },
  1243          "javaVersion": {
  1244            "type": "string"
  1245          },
  1246          "javaVersionDate": {
  1247            "type": "string"
  1248          },
  1249          "libc": {
  1250            "type": "string"
  1251          },
  1252          "modules": {
  1253            "items": {
  1254              "type": "string"
  1255            },
  1256            "type": "array"
  1257          },
  1258          "osArch": {
  1259            "type": "string"
  1260          },
  1261          "osName": {
  1262            "type": "string"
  1263          },
  1264          "osVersion": {
  1265            "type": "string"
  1266          },
  1267          "source": {
  1268            "type": "string"
  1269          },
  1270          "buildSource": {
  1271            "type": "string"
  1272          },
  1273          "buildSourceRepo": {
  1274            "type": "string"
  1275          },
  1276          "sourceRepo": {
  1277            "type": "string"
  1278          },
  1279          "fullVersion": {
  1280            "type": "string"
  1281          },
  1282          "semanticVersion": {
  1283            "type": "string"
  1284          },
  1285          "buildInfo": {
  1286            "type": "string"
  1287          },
  1288          "jvmVariant": {
  1289            "type": "string"
  1290          },
  1291          "jvmVersion": {
  1292            "type": "string"
  1293          },
  1294          "imageType": {
  1295            "type": "string"
  1296          },
  1297          "buildType": {
  1298            "type": "string"
  1299          }
  1300        },
  1301        "type": "object"
  1302      },
  1303      "JavascriptNpmPackage": {
  1304        "properties": {
  1305          "name": {
  1306            "type": "string"
  1307          },
  1308          "version": {
  1309            "type": "string"
  1310          },
  1311          "author": {
  1312            "type": "string"
  1313          },
  1314          "homepage": {
  1315            "type": "string"
  1316          },
  1317          "description": {
  1318            "type": "string"
  1319          },
  1320          "url": {
  1321            "type": "string"
  1322          },
  1323          "private": {
  1324            "type": "boolean"
  1325          }
  1326        },
  1327        "type": "object",
  1328        "required": [
  1329          "name",
  1330          "version",
  1331          "author",
  1332          "homepage",
  1333          "description",
  1334          "url",
  1335          "private"
  1336        ]
  1337      },
  1338      "JavascriptNpmPackageLockEntry": {
  1339        "properties": {
  1340          "resolved": {
  1341            "type": "string"
  1342          },
  1343          "integrity": {
  1344            "type": "string"
  1345          }
  1346        },
  1347        "type": "object",
  1348        "required": [
  1349          "resolved",
  1350          "integrity"
  1351        ]
  1352      },
  1353      "JavascriptYarnLockEntry": {
  1354        "properties": {
  1355          "resolved": {
  1356            "type": "string"
  1357          },
  1358          "integrity": {
  1359            "type": "string"
  1360          }
  1361        },
  1362        "type": "object",
  1363        "required": [
  1364          "resolved",
  1365          "integrity"
  1366        ]
  1367      },
  1368      "KeyValue": {
  1369        "properties": {
  1370          "key": {
  1371            "type": "string"
  1372          },
  1373          "value": {
  1374            "type": "string"
  1375          }
  1376        },
  1377        "type": "object",
  1378        "required": [
  1379          "key",
  1380          "value"
  1381        ]
  1382      },
  1383      "KeyValues": {
  1384        "items": {
  1385          "$ref": "#/$defs/KeyValue"
  1386        },
  1387        "type": "array"
  1388      },
  1389      "License": {
  1390        "properties": {
  1391          "value": {
  1392            "type": "string"
  1393          },
  1394          "spdxExpression": {
  1395            "type": "string"
  1396          },
  1397          "type": {
  1398            "type": "string"
  1399          },
  1400          "urls": {
  1401            "items": {
  1402              "type": "string"
  1403            },
  1404            "type": "array"
  1405          },
  1406          "locations": {
  1407            "items": {
  1408              "$ref": "#/$defs/Location"
  1409            },
  1410            "type": "array"
  1411          },
  1412          "contents": {
  1413            "type": "string"
  1414          }
  1415        },
  1416        "type": "object",
  1417        "required": [
  1418          "value",
  1419          "spdxExpression",
  1420          "type",
  1421          "urls",
  1422          "locations"
  1423        ]
  1424      },
  1425      "LinuxKernelArchive": {
  1426        "properties": {
  1427          "name": {
  1428            "type": "string"
  1429          },
  1430          "architecture": {
  1431            "type": "string"
  1432          },
  1433          "version": {
  1434            "type": "string"
  1435          },
  1436          "extendedVersion": {
  1437            "type": "string"
  1438          },
  1439          "buildTime": {
  1440            "type": "string"
  1441          },
  1442          "author": {
  1443            "type": "string"
  1444          },
  1445          "format": {
  1446            "type": "string"
  1447          },
  1448          "rwRootFS": {
  1449            "type": "boolean"
  1450          },
  1451          "swapDevice": {
  1452            "type": "integer"
  1453          },
  1454          "rootDevice": {
  1455            "type": "integer"
  1456          },
  1457          "videoMode": {
  1458            "type": "string"
  1459          }
  1460        },
  1461        "type": "object",
  1462        "required": [
  1463          "name",
  1464          "architecture",
  1465          "version"
  1466        ]
  1467      },
  1468      "LinuxKernelModule": {
  1469        "properties": {
  1470          "name": {
  1471            "type": "string"
  1472          },
  1473          "version": {
  1474            "type": "string"
  1475          },
  1476          "sourceVersion": {
  1477            "type": "string"
  1478          },
  1479          "path": {
  1480            "type": "string"
  1481          },
  1482          "description": {
  1483            "type": "string"
  1484          },
  1485          "author": {
  1486            "type": "string"
  1487          },
  1488          "license": {
  1489            "type": "string"
  1490          },
  1491          "kernelVersion": {
  1492            "type": "string"
  1493          },
  1494          "versionMagic": {
  1495            "type": "string"
  1496          },
  1497          "parameters": {
  1498            "patternProperties": {
  1499              ".*": {
  1500                "$ref": "#/$defs/LinuxKernelModuleParameter"
  1501              }
  1502            },
  1503            "type": "object"
  1504          }
  1505        },
  1506        "type": "object"
  1507      },
  1508      "LinuxKernelModuleParameter": {
  1509        "properties": {
  1510          "type": {
  1511            "type": "string"
  1512          },
  1513          "description": {
  1514            "type": "string"
  1515          }
  1516        },
  1517        "type": "object"
  1518      },
  1519      "LinuxRelease": {
  1520        "properties": {
  1521          "prettyName": {
  1522            "type": "string"
  1523          },
  1524          "name": {
  1525            "type": "string"
  1526          },
  1527          "id": {
  1528            "type": "string"
  1529          },
  1530          "idLike": {
  1531            "$ref": "#/$defs/IDLikes"
  1532          },
  1533          "version": {
  1534            "type": "string"
  1535          },
  1536          "versionID": {
  1537            "type": "string"
  1538          },
  1539          "versionCodename": {
  1540            "type": "string"
  1541          },
  1542          "buildID": {
  1543            "type": "string"
  1544          },
  1545          "imageID": {
  1546            "type": "string"
  1547          },
  1548          "imageVersion": {
  1549            "type": "string"
  1550          },
  1551          "variant": {
  1552            "type": "string"
  1553          },
  1554          "variantID": {
  1555            "type": "string"
  1556          },
  1557          "homeURL": {
  1558            "type": "string"
  1559          },
  1560          "supportURL": {
  1561            "type": "string"
  1562          },
  1563          "bugReportURL": {
  1564            "type": "string"
  1565          },
  1566          "privacyPolicyURL": {
  1567            "type": "string"
  1568          },
  1569          "cpeName": {
  1570            "type": "string"
  1571          },
  1572          "supportEnd": {
  1573            "type": "string"
  1574          }
  1575        },
  1576        "type": "object"
  1577      },
  1578      "Location": {
  1579        "properties": {
  1580          "path": {
  1581            "type": "string"
  1582          },
  1583          "layerID": {
  1584            "type": "string"
  1585          },
  1586          "accessPath": {
  1587            "type": "string"
  1588          },
  1589          "annotations": {
  1590            "patternProperties": {
  1591              ".*": {
  1592                "type": "string"
  1593              }
  1594            },
  1595            "type": "object"
  1596          }
  1597        },
  1598        "type": "object",
  1599        "required": [
  1600          "path",
  1601          "accessPath"
  1602        ]
  1603      },
  1604      "LuarocksPackage": {
  1605        "properties": {
  1606          "name": {
  1607            "type": "string"
  1608          },
  1609          "version": {
  1610            "type": "string"
  1611          },
  1612          "license": {
  1613            "type": "string"
  1614          },
  1615          "homepage": {
  1616            "type": "string"
  1617          },
  1618          "description": {
  1619            "type": "string"
  1620          },
  1621          "url": {
  1622            "type": "string"
  1623          },
  1624          "dependencies": {
  1625            "patternProperties": {
  1626              ".*": {
  1627                "type": "string"
  1628              }
  1629            },
  1630            "type": "object"
  1631          }
  1632        },
  1633        "type": "object",
  1634        "required": [
  1635          "name",
  1636          "version",
  1637          "license",
  1638          "homepage",
  1639          "description",
  1640          "url",
  1641          "dependencies"
  1642        ]
  1643      },
  1644      "MicrosoftKbPatch": {
  1645        "properties": {
  1646          "product_id": {
  1647            "type": "string"
  1648          },
  1649          "kb": {
  1650            "type": "string"
  1651          }
  1652        },
  1653        "type": "object",
  1654        "required": [
  1655          "product_id",
  1656          "kb"
  1657        ]
  1658      },
  1659      "NixStoreEntry": {
  1660        "properties": {
  1661          "outputHash": {
  1662            "type": "string"
  1663          },
  1664          "output": {
  1665            "type": "string"
  1666          },
  1667          "files": {
  1668            "items": {
  1669              "type": "string"
  1670            },
  1671            "type": "array"
  1672          }
  1673        },
  1674        "type": "object",
  1675        "required": [
  1676          "outputHash",
  1677          "files"
  1678        ]
  1679      },
  1680      "OpamPackage": {
  1681        "properties": {
  1682          "name": {
  1683            "type": "string"
  1684          },
  1685          "version": {
  1686            "type": "string"
  1687          },
  1688          "licenses": {
  1689            "items": {
  1690              "type": "string"
  1691            },
  1692            "type": "array"
  1693          },
  1694          "url": {
  1695            "type": "string"
  1696          },
  1697          "checksum": {
  1698            "items": {
  1699              "type": "string"
  1700            },
  1701            "type": "array"
  1702          },
  1703          "homepage": {
  1704            "type": "string"
  1705          },
  1706          "dependencies": {
  1707            "items": {
  1708              "type": "string"
  1709            },
  1710            "type": "array"
  1711          }
  1712        },
  1713        "type": "object",
  1714        "required": [
  1715          "name",
  1716          "version",
  1717          "licenses",
  1718          "url",
  1719          "checksum",
  1720          "homepage",
  1721          "dependencies"
  1722        ]
  1723      },
  1724      "Package": {
  1725        "properties": {
  1726          "id": {
  1727            "type": "string"
  1728          },
  1729          "name": {
  1730            "type": "string"
  1731          },
  1732          "version": {
  1733            "type": "string"
  1734          },
  1735          "type": {
  1736            "type": "string"
  1737          },
  1738          "foundBy": {
  1739            "type": "string"
  1740          },
  1741          "locations": {
  1742            "items": {
  1743              "$ref": "#/$defs/Location"
  1744            },
  1745            "type": "array"
  1746          },
  1747          "licenses": {
  1748            "$ref": "#/$defs/licenses"
  1749          },
  1750          "language": {
  1751            "type": "string"
  1752          },
  1753          "cpes": {
  1754            "$ref": "#/$defs/cpes"
  1755          },
  1756          "purl": {
  1757            "type": "string"
  1758          },
  1759          "metadataType": {
  1760            "type": "string"
  1761          },
  1762          "metadata": {
  1763            "anyOf": [
  1764              {
  1765                "type": "null"
  1766              },
  1767              {
  1768                "$ref": "#/$defs/AlpmDbEntry"
  1769              },
  1770              {
  1771                "$ref": "#/$defs/ApkDbEntry"
  1772              },
  1773              {
  1774                "$ref": "#/$defs/BinarySignature"
  1775              },
  1776              {
  1777                "$ref": "#/$defs/BitnamiSbomEntry"
  1778              },
  1779              {
  1780                "$ref": "#/$defs/CConanFileEntry"
  1781              },
  1782              {
  1783                "$ref": "#/$defs/CConanInfoEntry"
  1784              },
  1785              {
  1786                "$ref": "#/$defs/CConanLockEntry"
  1787              },
  1788              {
  1789                "$ref": "#/$defs/CConanLockV2Entry"
  1790              },
  1791              {
  1792                "$ref": "#/$defs/CocoaPodfileLockEntry"
  1793              },
  1794              {
  1795                "$ref": "#/$defs/DartPubspecLockEntry"
  1796              },
  1797              {
  1798                "$ref": "#/$defs/DotnetDepsEntry"
  1799              },
  1800              {
  1801                "$ref": "#/$defs/DotnetPackagesLockEntry"
  1802              },
  1803              {
  1804                "$ref": "#/$defs/DotnetPortableExecutableEntry"
  1805              },
  1806              {
  1807                "$ref": "#/$defs/DpkgArchiveEntry"
  1808              },
  1809              {
  1810                "$ref": "#/$defs/DpkgDbEntry"
  1811              },
  1812              {
  1813                "$ref": "#/$defs/ElfBinaryPackageNoteJsonPayload"
  1814              },
  1815              {
  1816                "$ref": "#/$defs/ElixirMixLockEntry"
  1817              },
  1818              {
  1819                "$ref": "#/$defs/ErlangRebarLockEntry"
  1820              },
  1821              {
  1822                "$ref": "#/$defs/GithubActionsUseStatement"
  1823              },
  1824              {
  1825                "$ref": "#/$defs/GoModuleBuildinfoEntry"
  1826              },
  1827              {
  1828                "$ref": "#/$defs/GoModuleEntry"
  1829              },
  1830              {
  1831                "$ref": "#/$defs/HaskellHackageStackEntry"
  1832              },
  1833              {
  1834                "$ref": "#/$defs/HaskellHackageStackLockEntry"
  1835              },
  1836              {
  1837                "$ref": "#/$defs/JavaArchive"
  1838              },
  1839              {
  1840                "$ref": "#/$defs/JavaJvmInstallation"
  1841              },
  1842              {
  1843                "$ref": "#/$defs/JavascriptNpmPackage"
  1844              },
  1845              {
  1846                "$ref": "#/$defs/JavascriptNpmPackageLockEntry"
  1847              },
  1848              {
  1849                "$ref": "#/$defs/JavascriptYarnLockEntry"
  1850              },
  1851              {
  1852                "$ref": "#/$defs/LinuxKernelArchive"
  1853              },
  1854              {
  1855                "$ref": "#/$defs/LinuxKernelModule"
  1856              },
  1857              {
  1858                "$ref": "#/$defs/LuarocksPackage"
  1859              },
  1860              {
  1861                "$ref": "#/$defs/MicrosoftKbPatch"
  1862              },
  1863              {
  1864                "$ref": "#/$defs/NixStoreEntry"
  1865              },
  1866              {
  1867                "$ref": "#/$defs/OpamPackage"
  1868              },
  1869              {
  1870                "$ref": "#/$defs/PhpComposerInstalledEntry"
  1871              },
  1872              {
  1873                "$ref": "#/$defs/PhpComposerLockEntry"
  1874              },
  1875              {
  1876                "$ref": "#/$defs/PhpPeclEntry"
  1877              },
  1878              {
  1879                "$ref": "#/$defs/PortageDbEntry"
  1880              },
  1881              {
  1882                "$ref": "#/$defs/PythonPackage"
  1883              },
  1884              {
  1885                "$ref": "#/$defs/PythonPipRequirementsEntry"
  1886              },
  1887              {
  1888                "$ref": "#/$defs/PythonPipfileLockEntry"
  1889              },
  1890              {
  1891                "$ref": "#/$defs/PythonPoetryLockEntry"
  1892              },
  1893              {
  1894                "$ref": "#/$defs/RDescription"
  1895              },
  1896              {
  1897                "$ref": "#/$defs/RpmArchive"
  1898              },
  1899              {
  1900                "$ref": "#/$defs/RpmDbEntry"
  1901              },
  1902              {
  1903                "$ref": "#/$defs/RubyGemspec"
  1904              },
  1905              {
  1906                "$ref": "#/$defs/RustCargoAuditEntry"
  1907              },
  1908              {
  1909                "$ref": "#/$defs/RustCargoLockEntry"
  1910              },
  1911              {
  1912                "$ref": "#/$defs/SwiftPackageManagerLockEntry"
  1913              },
  1914              {
  1915                "$ref": "#/$defs/SwiplpackPackage"
  1916              },
  1917              {
  1918                "$ref": "#/$defs/TerraformLockProviderEntry"
  1919              },
  1920              {
  1921                "$ref": "#/$defs/WordpressPluginEntry"
  1922              }
  1923            ]
  1924          }
  1925        },
  1926        "type": "object",
  1927        "required": [
  1928          "id",
  1929          "name",
  1930          "version",
  1931          "type",
  1932          "foundBy",
  1933          "locations",
  1934          "licenses",
  1935          "language",
  1936          "cpes",
  1937          "purl"
  1938        ]
  1939      },
  1940      "PhpComposerAuthors": {
  1941        "properties": {
  1942          "name": {
  1943            "type": "string"
  1944          },
  1945          "email": {
  1946            "type": "string"
  1947          },
  1948          "homepage": {
  1949            "type": "string"
  1950          }
  1951        },
  1952        "type": "object",
  1953        "required": [
  1954          "name"
  1955        ]
  1956      },
  1957      "PhpComposerExternalReference": {
  1958        "properties": {
  1959          "type": {
  1960            "type": "string"
  1961          },
  1962          "url": {
  1963            "type": "string"
  1964          },
  1965          "reference": {
  1966            "type": "string"
  1967          },
  1968          "shasum": {
  1969            "type": "string"
  1970          }
  1971        },
  1972        "type": "object",
  1973        "required": [
  1974          "type",
  1975          "url",
  1976          "reference"
  1977        ]
  1978      },
  1979      "PhpComposerInstalledEntry": {
  1980        "properties": {
  1981          "name": {
  1982            "type": "string"
  1983          },
  1984          "version": {
  1985            "type": "string"
  1986          },
  1987          "source": {
  1988            "$ref": "#/$defs/PhpComposerExternalReference"
  1989          },
  1990          "dist": {
  1991            "$ref": "#/$defs/PhpComposerExternalReference"
  1992          },
  1993          "require": {
  1994            "patternProperties": {
  1995              ".*": {
  1996                "type": "string"
  1997              }
  1998            },
  1999            "type": "object"
  2000          },
  2001          "provide": {
  2002            "patternProperties": {
  2003              ".*": {
  2004                "type": "string"
  2005              }
  2006            },
  2007            "type": "object"
  2008          },
  2009          "require-dev": {
  2010            "patternProperties": {
  2011              ".*": {
  2012                "type": "string"
  2013              }
  2014            },
  2015            "type": "object"
  2016          },
  2017          "suggest": {
  2018            "patternProperties": {
  2019              ".*": {
  2020                "type": "string"
  2021              }
  2022            },
  2023            "type": "object"
  2024          },
  2025          "license": {
  2026            "items": {
  2027              "type": "string"
  2028            },
  2029            "type": "array"
  2030          },
  2031          "type": {
  2032            "type": "string"
  2033          },
  2034          "notification-url": {
  2035            "type": "string"
  2036          },
  2037          "bin": {
  2038            "items": {
  2039              "type": "string"
  2040            },
  2041            "type": "array"
  2042          },
  2043          "authors": {
  2044            "items": {
  2045              "$ref": "#/$defs/PhpComposerAuthors"
  2046            },
  2047            "type": "array"
  2048          },
  2049          "description": {
  2050            "type": "string"
  2051          },
  2052          "homepage": {
  2053            "type": "string"
  2054          },
  2055          "keywords": {
  2056            "items": {
  2057              "type": "string"
  2058            },
  2059            "type": "array"
  2060          },
  2061          "time": {
  2062            "type": "string"
  2063          }
  2064        },
  2065        "type": "object",
  2066        "required": [
  2067          "name",
  2068          "version",
  2069          "source",
  2070          "dist"
  2071        ]
  2072      },
  2073      "PhpComposerLockEntry": {
  2074        "properties": {
  2075          "name": {
  2076            "type": "string"
  2077          },
  2078          "version": {
  2079            "type": "string"
  2080          },
  2081          "source": {
  2082            "$ref": "#/$defs/PhpComposerExternalReference"
  2083          },
  2084          "dist": {
  2085            "$ref": "#/$defs/PhpComposerExternalReference"
  2086          },
  2087          "require": {
  2088            "patternProperties": {
  2089              ".*": {
  2090                "type": "string"
  2091              }
  2092            },
  2093            "type": "object"
  2094          },
  2095          "provide": {
  2096            "patternProperties": {
  2097              ".*": {
  2098                "type": "string"
  2099              }
  2100            },
  2101            "type": "object"
  2102          },
  2103          "require-dev": {
  2104            "patternProperties": {
  2105              ".*": {
  2106                "type": "string"
  2107              }
  2108            },
  2109            "type": "object"
  2110          },
  2111          "suggest": {
  2112            "patternProperties": {
  2113              ".*": {
  2114                "type": "string"
  2115              }
  2116            },
  2117            "type": "object"
  2118          },
  2119          "license": {
  2120            "items": {
  2121              "type": "string"
  2122            },
  2123            "type": "array"
  2124          },
  2125          "type": {
  2126            "type": "string"
  2127          },
  2128          "notification-url": {
  2129            "type": "string"
  2130          },
  2131          "bin": {
  2132            "items": {
  2133              "type": "string"
  2134            },
  2135            "type": "array"
  2136          },
  2137          "authors": {
  2138            "items": {
  2139              "$ref": "#/$defs/PhpComposerAuthors"
  2140            },
  2141            "type": "array"
  2142          },
  2143          "description": {
  2144            "type": "string"
  2145          },
  2146          "homepage": {
  2147            "type": "string"
  2148          },
  2149          "keywords": {
  2150            "items": {
  2151              "type": "string"
  2152            },
  2153            "type": "array"
  2154          },
  2155          "time": {
  2156            "type": "string"
  2157          }
  2158        },
  2159        "type": "object",
  2160        "required": [
  2161          "name",
  2162          "version",
  2163          "source",
  2164          "dist"
  2165        ]
  2166      },
  2167      "PhpPeclEntry": {
  2168        "properties": {
  2169          "name": {
  2170            "type": "string"
  2171          },
  2172          "version": {
  2173            "type": "string"
  2174          },
  2175          "license": {
  2176            "items": {
  2177              "type": "string"
  2178            },
  2179            "type": "array"
  2180          }
  2181        },
  2182        "type": "object",
  2183        "required": [
  2184          "name",
  2185          "version"
  2186        ]
  2187      },
  2188      "PortageDbEntry": {
  2189        "properties": {
  2190          "installedSize": {
  2191            "type": "integer"
  2192          },
  2193          "files": {
  2194            "items": {
  2195              "$ref": "#/$defs/PortageFileRecord"
  2196            },
  2197            "type": "array"
  2198          }
  2199        },
  2200        "type": "object",
  2201        "required": [
  2202          "installedSize",
  2203          "files"
  2204        ]
  2205      },
  2206      "PortageFileRecord": {
  2207        "properties": {
  2208          "path": {
  2209            "type": "string"
  2210          },
  2211          "digest": {
  2212            "$ref": "#/$defs/Digest"
  2213          }
  2214        },
  2215        "type": "object",
  2216        "required": [
  2217          "path"
  2218        ]
  2219      },
  2220      "PythonDirectURLOriginInfo": {
  2221        "properties": {
  2222          "url": {
  2223            "type": "string"
  2224          },
  2225          "commitId": {
  2226            "type": "string"
  2227          },
  2228          "vcs": {
  2229            "type": "string"
  2230          }
  2231        },
  2232        "type": "object",
  2233        "required": [
  2234          "url"
  2235        ]
  2236      },
  2237      "PythonFileDigest": {
  2238        "properties": {
  2239          "algorithm": {
  2240            "type": "string"
  2241          },
  2242          "value": {
  2243            "type": "string"
  2244          }
  2245        },
  2246        "type": "object",
  2247        "required": [
  2248          "algorithm",
  2249          "value"
  2250        ]
  2251      },
  2252      "PythonFileRecord": {
  2253        "properties": {
  2254          "path": {
  2255            "type": "string"
  2256          },
  2257          "digest": {
  2258            "$ref": "#/$defs/PythonFileDigest"
  2259          },
  2260          "size": {
  2261            "type": "string"
  2262          }
  2263        },
  2264        "type": "object",
  2265        "required": [
  2266          "path"
  2267        ]
  2268      },
  2269      "PythonPackage": {
  2270        "properties": {
  2271          "name": {
  2272            "type": "string"
  2273          },
  2274          "version": {
  2275            "type": "string"
  2276          },
  2277          "author": {
  2278            "type": "string"
  2279          },
  2280          "authorEmail": {
  2281            "type": "string"
  2282          },
  2283          "platform": {
  2284            "type": "string"
  2285          },
  2286          "files": {
  2287            "items": {
  2288              "$ref": "#/$defs/PythonFileRecord"
  2289            },
  2290            "type": "array"
  2291          },
  2292          "sitePackagesRootPath": {
  2293            "type": "string"
  2294          },
  2295          "topLevelPackages": {
  2296            "items": {
  2297              "type": "string"
  2298            },
  2299            "type": "array"
  2300          },
  2301          "directUrlOrigin": {
  2302            "$ref": "#/$defs/PythonDirectURLOriginInfo"
  2303          },
  2304          "requiresPython": {
  2305            "type": "string"
  2306          },
  2307          "requiresDist": {
  2308            "items": {
  2309              "type": "string"
  2310            },
  2311            "type": "array"
  2312          },
  2313          "providesExtra": {
  2314            "items": {
  2315              "type": "string"
  2316            },
  2317            "type": "array"
  2318          }
  2319        },
  2320        "type": "object",
  2321        "required": [
  2322          "name",
  2323          "version",
  2324          "author",
  2325          "authorEmail",
  2326          "platform",
  2327          "sitePackagesRootPath"
  2328        ]
  2329      },
  2330      "PythonPipRequirementsEntry": {
  2331        "properties": {
  2332          "name": {
  2333            "type": "string"
  2334          },
  2335          "extras": {
  2336            "items": {
  2337              "type": "string"
  2338            },
  2339            "type": "array"
  2340          },
  2341          "versionConstraint": {
  2342            "type": "string"
  2343          },
  2344          "url": {
  2345            "type": "string"
  2346          },
  2347          "markers": {
  2348            "type": "string"
  2349          }
  2350        },
  2351        "type": "object",
  2352        "required": [
  2353          "name",
  2354          "versionConstraint"
  2355        ]
  2356      },
  2357      "PythonPipfileLockEntry": {
  2358        "properties": {
  2359          "hashes": {
  2360            "items": {
  2361              "type": "string"
  2362            },
  2363            "type": "array"
  2364          },
  2365          "index": {
  2366            "type": "string"
  2367          }
  2368        },
  2369        "type": "object",
  2370        "required": [
  2371          "hashes",
  2372          "index"
  2373        ]
  2374      },
  2375      "PythonPoetryLockDependencyEntry": {
  2376        "properties": {
  2377          "name": {
  2378            "type": "string"
  2379          },
  2380          "version": {
  2381            "type": "string"
  2382          },
  2383          "optional": {
  2384            "type": "boolean"
  2385          },
  2386          "markers": {
  2387            "type": "string"
  2388          },
  2389          "extras": {
  2390            "items": {
  2391              "type": "string"
  2392            },
  2393            "type": "array"
  2394          }
  2395        },
  2396        "type": "object",
  2397        "required": [
  2398          "name",
  2399          "version",
  2400          "optional"
  2401        ]
  2402      },
  2403      "PythonPoetryLockEntry": {
  2404        "properties": {
  2405          "index": {
  2406            "type": "string"
  2407          },
  2408          "dependencies": {
  2409            "items": {
  2410              "$ref": "#/$defs/PythonPoetryLockDependencyEntry"
  2411            },
  2412            "type": "array"
  2413          },
  2414          "extras": {
  2415            "items": {
  2416              "$ref": "#/$defs/PythonPoetryLockExtraEntry"
  2417            },
  2418            "type": "array"
  2419          }
  2420        },
  2421        "type": "object",
  2422        "required": [
  2423          "index",
  2424          "dependencies"
  2425        ]
  2426      },
  2427      "PythonPoetryLockExtraEntry": {
  2428        "properties": {
  2429          "name": {
  2430            "type": "string"
  2431          },
  2432          "dependencies": {
  2433            "items": {
  2434              "type": "string"
  2435            },
  2436            "type": "array"
  2437          }
  2438        },
  2439        "type": "object",
  2440        "required": [
  2441          "name",
  2442          "dependencies"
  2443        ]
  2444      },
  2445      "RDescription": {
  2446        "properties": {
  2447          "title": {
  2448            "type": "string"
  2449          },
  2450          "description": {
  2451            "type": "string"
  2452          },
  2453          "author": {
  2454            "type": "string"
  2455          },
  2456          "maintainer": {
  2457            "type": "string"
  2458          },
  2459          "url": {
  2460            "items": {
  2461              "type": "string"
  2462            },
  2463            "type": "array"
  2464          },
  2465          "repository": {
  2466            "type": "string"
  2467          },
  2468          "built": {
  2469            "type": "string"
  2470          },
  2471          "needsCompilation": {
  2472            "type": "boolean"
  2473          },
  2474          "imports": {
  2475            "items": {
  2476              "type": "string"
  2477            },
  2478            "type": "array"
  2479          },
  2480          "depends": {
  2481            "items": {
  2482              "type": "string"
  2483            },
  2484            "type": "array"
  2485          },
  2486          "suggests": {
  2487            "items": {
  2488              "type": "string"
  2489            },
  2490            "type": "array"
  2491          }
  2492        },
  2493        "type": "object"
  2494      },
  2495      "Relationship": {
  2496        "properties": {
  2497          "parent": {
  2498            "type": "string"
  2499          },
  2500          "child": {
  2501            "type": "string"
  2502          },
  2503          "type": {
  2504            "type": "string"
  2505          },
  2506          "metadata": true
  2507        },
  2508        "type": "object",
  2509        "required": [
  2510          "parent",
  2511          "child",
  2512          "type"
  2513        ]
  2514      },
  2515      "RpmArchive": {
  2516        "properties": {
  2517          "name": {
  2518            "type": "string"
  2519          },
  2520          "version": {
  2521            "type": "string"
  2522          },
  2523          "epoch": {
  2524            "oneOf": [
  2525              {
  2526                "type": "integer"
  2527              },
  2528              {
  2529                "type": "null"
  2530              }
  2531            ]
  2532          },
  2533          "architecture": {
  2534            "type": "string"
  2535          },
  2536          "release": {
  2537            "type": "string"
  2538          },
  2539          "sourceRpm": {
  2540            "type": "string"
  2541          },
  2542          "size": {
  2543            "type": "integer"
  2544          },
  2545          "vendor": {
  2546            "type": "string"
  2547          },
  2548          "modularityLabel": {
  2549            "type": "string"
  2550          },
  2551          "provides": {
  2552            "items": {
  2553              "type": "string"
  2554            },
  2555            "type": "array"
  2556          },
  2557          "requires": {
  2558            "items": {
  2559              "type": "string"
  2560            },
  2561            "type": "array"
  2562          },
  2563          "files": {
  2564            "items": {
  2565              "$ref": "#/$defs/RpmFileRecord"
  2566            },
  2567            "type": "array"
  2568          }
  2569        },
  2570        "type": "object",
  2571        "required": [
  2572          "name",
  2573          "version",
  2574          "epoch",
  2575          "architecture",
  2576          "release",
  2577          "sourceRpm",
  2578          "size",
  2579          "vendor",
  2580          "files"
  2581        ]
  2582      },
  2583      "RpmDbEntry": {
  2584        "properties": {
  2585          "name": {
  2586            "type": "string"
  2587          },
  2588          "version": {
  2589            "type": "string"
  2590          },
  2591          "epoch": {
  2592            "oneOf": [
  2593              {
  2594                "type": "integer"
  2595              },
  2596              {
  2597                "type": "null"
  2598              }
  2599            ]
  2600          },
  2601          "architecture": {
  2602            "type": "string"
  2603          },
  2604          "release": {
  2605            "type": "string"
  2606          },
  2607          "sourceRpm": {
  2608            "type": "string"
  2609          },
  2610          "size": {
  2611            "type": "integer"
  2612          },
  2613          "vendor": {
  2614            "type": "string"
  2615          },
  2616          "modularityLabel": {
  2617            "type": "string"
  2618          },
  2619          "provides": {
  2620            "items": {
  2621              "type": "string"
  2622            },
  2623            "type": "array"
  2624          },
  2625          "requires": {
  2626            "items": {
  2627              "type": "string"
  2628            },
  2629            "type": "array"
  2630          },
  2631          "files": {
  2632            "items": {
  2633              "$ref": "#/$defs/RpmFileRecord"
  2634            },
  2635            "type": "array"
  2636          }
  2637        },
  2638        "type": "object",
  2639        "required": [
  2640          "name",
  2641          "version",
  2642          "epoch",
  2643          "architecture",
  2644          "release",
  2645          "sourceRpm",
  2646          "size",
  2647          "vendor",
  2648          "files"
  2649        ]
  2650      },
  2651      "RpmFileRecord": {
  2652        "properties": {
  2653          "path": {
  2654            "type": "string"
  2655          },
  2656          "mode": {
  2657            "type": "integer"
  2658          },
  2659          "size": {
  2660            "type": "integer"
  2661          },
  2662          "digest": {
  2663            "$ref": "#/$defs/Digest"
  2664          },
  2665          "userName": {
  2666            "type": "string"
  2667          },
  2668          "groupName": {
  2669            "type": "string"
  2670          },
  2671          "flags": {
  2672            "type": "string"
  2673          }
  2674        },
  2675        "type": "object",
  2676        "required": [
  2677          "path",
  2678          "mode",
  2679          "size",
  2680          "digest",
  2681          "userName",
  2682          "groupName",
  2683          "flags"
  2684        ]
  2685      },
  2686      "RubyGemspec": {
  2687        "properties": {
  2688          "name": {
  2689            "type": "string"
  2690          },
  2691          "version": {
  2692            "type": "string"
  2693          },
  2694          "files": {
  2695            "items": {
  2696              "type": "string"
  2697            },
  2698            "type": "array"
  2699          },
  2700          "authors": {
  2701            "items": {
  2702              "type": "string"
  2703            },
  2704            "type": "array"
  2705          },
  2706          "homepage": {
  2707            "type": "string"
  2708          }
  2709        },
  2710        "type": "object",
  2711        "required": [
  2712          "name",
  2713          "version"
  2714        ]
  2715      },
  2716      "RustCargoAuditEntry": {
  2717        "properties": {
  2718          "name": {
  2719            "type": "string"
  2720          },
  2721          "version": {
  2722            "type": "string"
  2723          },
  2724          "source": {
  2725            "type": "string"
  2726          }
  2727        },
  2728        "type": "object",
  2729        "required": [
  2730          "name",
  2731          "version",
  2732          "source"
  2733        ]
  2734      },
  2735      "RustCargoLockEntry": {
  2736        "properties": {
  2737          "name": {
  2738            "type": "string"
  2739          },
  2740          "version": {
  2741            "type": "string"
  2742          },
  2743          "source": {
  2744            "type": "string"
  2745          },
  2746          "checksum": {
  2747            "type": "string"
  2748          },
  2749          "dependencies": {
  2750            "items": {
  2751              "type": "string"
  2752            },
  2753            "type": "array"
  2754          }
  2755        },
  2756        "type": "object",
  2757        "required": [
  2758          "name",
  2759          "version",
  2760          "source",
  2761          "checksum",
  2762          "dependencies"
  2763        ]
  2764      },
  2765      "Schema": {
  2766        "properties": {
  2767          "version": {
  2768            "type": "string"
  2769          },
  2770          "url": {
  2771            "type": "string"
  2772          }
  2773        },
  2774        "type": "object",
  2775        "required": [
  2776          "version",
  2777          "url"
  2778        ]
  2779      },
  2780      "Source": {
  2781        "properties": {
  2782          "id": {
  2783            "type": "string"
  2784          },
  2785          "name": {
  2786            "type": "string"
  2787          },
  2788          "version": {
  2789            "type": "string"
  2790          },
  2791          "type": {
  2792            "type": "string"
  2793          },
  2794          "metadata": true
  2795        },
  2796        "type": "object",
  2797        "required": [
  2798          "id",
  2799          "name",
  2800          "version",
  2801          "type",
  2802          "metadata"
  2803        ]
  2804      },
  2805      "SwiftPackageManagerLockEntry": {
  2806        "properties": {
  2807          "revision": {
  2808            "type": "string"
  2809          }
  2810        },
  2811        "type": "object",
  2812        "required": [
  2813          "revision"
  2814        ]
  2815      },
  2816      "SwiplpackPackage": {
  2817        "properties": {
  2818          "name": {
  2819            "type": "string"
  2820          },
  2821          "version": {
  2822            "type": "string"
  2823          },
  2824          "author": {
  2825            "type": "string"
  2826          },
  2827          "authorEmail": {
  2828            "type": "string"
  2829          },
  2830          "packager": {
  2831            "type": "string"
  2832          },
  2833          "packagerEmail": {
  2834            "type": "string"
  2835          },
  2836          "homepage": {
  2837            "type": "string"
  2838          },
  2839          "dependencies": {
  2840            "items": {
  2841              "type": "string"
  2842            },
  2843            "type": "array"
  2844          }
  2845        },
  2846        "type": "object",
  2847        "required": [
  2848          "name",
  2849          "version",
  2850          "author",
  2851          "authorEmail",
  2852          "packager",
  2853          "packagerEmail",
  2854          "homepage",
  2855          "dependencies"
  2856        ]
  2857      },
  2858      "TerraformLockProviderEntry": {
  2859        "properties": {
  2860          "url": {
  2861            "type": "string"
  2862          },
  2863          "constraints": {
  2864            "type": "string"
  2865          },
  2866          "version": {
  2867            "type": "string"
  2868          },
  2869          "hashes": {
  2870            "items": {
  2871              "type": "string"
  2872            },
  2873            "type": "array"
  2874          }
  2875        },
  2876        "type": "object",
  2877        "required": [
  2878          "url",
  2879          "constraints",
  2880          "version",
  2881          "hashes"
  2882        ]
  2883      },
  2884      "WordpressPluginEntry": {
  2885        "properties": {
  2886          "pluginInstallDirectory": {
  2887            "type": "string"
  2888          },
  2889          "author": {
  2890            "type": "string"
  2891          },
  2892          "authorUri": {
  2893            "type": "string"
  2894          }
  2895        },
  2896        "type": "object",
  2897        "required": [
  2898          "pluginInstallDirectory"
  2899        ]
  2900      },
  2901      "cpes": {
  2902        "items": {
  2903          "$ref": "#/$defs/CPE"
  2904        },
  2905        "type": "array"
  2906      },
  2907      "licenses": {
  2908        "items": {
  2909          "$ref": "#/$defs/License"
  2910        },
  2911        "type": "array"
  2912      }
  2913    }
  2914  }