github.com/lineaje-labs/syft@v0.98.1-0.20231227153149-9e393f60ff1b/schema/json/schema-7.1.4.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          "size": {
   574            "type": "integer"
   575          }
   576        },
   577        "type": "object",
   578        "required": [
   579          "mode",
   580          "type",
   581          "userID",
   582          "groupID",
   583          "mimeType",
   584          "size"
   585        ]
   586      },
   587      "GemMetadata": {
   588        "properties": {
   589          "name": {
   590            "type": "string"
   591          },
   592          "version": {
   593            "type": "string"
   594          },
   595          "files": {
   596            "items": {
   597              "type": "string"
   598            },
   599            "type": "array"
   600          },
   601          "authors": {
   602            "items": {
   603              "type": "string"
   604            },
   605            "type": "array"
   606          },
   607          "licenses": {
   608            "items": {
   609              "type": "string"
   610            },
   611            "type": "array"
   612          },
   613          "homepage": {
   614            "type": "string"
   615          }
   616        },
   617        "type": "object",
   618        "required": [
   619          "name",
   620          "version"
   621        ]
   622      },
   623      "GolangBinMetadata": {
   624        "properties": {
   625          "goBuildSettings": {
   626            "patternProperties": {
   627              ".*": {
   628                "type": "string"
   629              }
   630            },
   631            "type": "object"
   632          },
   633          "goCompiledVersion": {
   634            "type": "string"
   635          },
   636          "architecture": {
   637            "type": "string"
   638          },
   639          "h1Digest": {
   640            "type": "string"
   641          },
   642          "mainModule": {
   643            "type": "string"
   644          }
   645        },
   646        "type": "object",
   647        "required": [
   648          "goCompiledVersion",
   649          "architecture"
   650        ]
   651      },
   652      "GolangModMetadata": {
   653        "properties": {
   654          "h1Digest": {
   655            "type": "string"
   656          }
   657        },
   658        "type": "object"
   659      },
   660      "HackageMetadata": {
   661        "properties": {
   662          "name": {
   663            "type": "string"
   664          },
   665          "version": {
   666            "type": "string"
   667          },
   668          "pkgHash": {
   669            "type": "string"
   670          },
   671          "snapshotURL": {
   672            "type": "string"
   673          }
   674        },
   675        "type": "object",
   676        "required": [
   677          "name",
   678          "version"
   679        ]
   680      },
   681      "IDLikes": {
   682        "items": {
   683          "type": "string"
   684        },
   685        "type": "array"
   686      },
   687      "JavaManifest": {
   688        "properties": {
   689          "main": {
   690            "patternProperties": {
   691              ".*": {
   692                "type": "string"
   693              }
   694            },
   695            "type": "object"
   696          },
   697          "namedSections": {
   698            "patternProperties": {
   699              ".*": {
   700                "patternProperties": {
   701                  ".*": {
   702                    "type": "string"
   703                  }
   704                },
   705                "type": "object"
   706              }
   707            },
   708            "type": "object"
   709          }
   710        },
   711        "type": "object"
   712      },
   713      "JavaMetadata": {
   714        "properties": {
   715          "virtualPath": {
   716            "type": "string"
   717          },
   718          "manifest": {
   719            "$ref": "#/$defs/JavaManifest"
   720          },
   721          "pomProperties": {
   722            "$ref": "#/$defs/PomProperties"
   723          },
   724          "pomProject": {
   725            "$ref": "#/$defs/PomProject"
   726          },
   727          "digest": {
   728            "items": {
   729              "$ref": "#/$defs/Digest"
   730            },
   731            "type": "array"
   732          }
   733        },
   734        "type": "object",
   735        "required": [
   736          "virtualPath"
   737        ]
   738      },
   739      "KbPackageMetadata": {
   740        "properties": {
   741          "product_id": {
   742            "type": "string"
   743          },
   744          "kb": {
   745            "type": "string"
   746          }
   747        },
   748        "type": "object",
   749        "required": [
   750          "product_id",
   751          "kb"
   752        ]
   753      },
   754      "LinuxKernelMetadata": {
   755        "properties": {
   756          "name": {
   757            "type": "string"
   758          },
   759          "architecture": {
   760            "type": "string"
   761          },
   762          "version": {
   763            "type": "string"
   764          },
   765          "extendedVersion": {
   766            "type": "string"
   767          },
   768          "buildTime": {
   769            "type": "string"
   770          },
   771          "author": {
   772            "type": "string"
   773          },
   774          "format": {
   775            "type": "string"
   776          },
   777          "rwRootFS": {
   778            "type": "boolean"
   779          },
   780          "swapDevice": {
   781            "type": "integer"
   782          },
   783          "rootDevice": {
   784            "type": "integer"
   785          },
   786          "videoMode": {
   787            "type": "string"
   788          }
   789        },
   790        "type": "object",
   791        "required": [
   792          "name",
   793          "architecture",
   794          "version"
   795        ]
   796      },
   797      "LinuxKernelModuleMetadata": {
   798        "properties": {
   799          "name": {
   800            "type": "string"
   801          },
   802          "version": {
   803            "type": "string"
   804          },
   805          "sourceVersion": {
   806            "type": "string"
   807          },
   808          "path": {
   809            "type": "string"
   810          },
   811          "description": {
   812            "type": "string"
   813          },
   814          "author": {
   815            "type": "string"
   816          },
   817          "license": {
   818            "type": "string"
   819          },
   820          "kernelVersion": {
   821            "type": "string"
   822          },
   823          "versionMagic": {
   824            "type": "string"
   825          },
   826          "parameters": {
   827            "patternProperties": {
   828              ".*": {
   829                "$ref": "#/$defs/LinuxKernelModuleParameter"
   830              }
   831            },
   832            "type": "object"
   833          }
   834        },
   835        "type": "object"
   836      },
   837      "LinuxKernelModuleParameter": {
   838        "properties": {
   839          "type": {
   840            "type": "string"
   841          },
   842          "description": {
   843            "type": "string"
   844          }
   845        },
   846        "type": "object"
   847      },
   848      "LinuxRelease": {
   849        "properties": {
   850          "prettyName": {
   851            "type": "string"
   852          },
   853          "name": {
   854            "type": "string"
   855          },
   856          "id": {
   857            "type": "string"
   858          },
   859          "idLike": {
   860            "$ref": "#/$defs/IDLikes"
   861          },
   862          "version": {
   863            "type": "string"
   864          },
   865          "versionID": {
   866            "type": "string"
   867          },
   868          "versionCodename": {
   869            "type": "string"
   870          },
   871          "buildID": {
   872            "type": "string"
   873          },
   874          "imageID": {
   875            "type": "string"
   876          },
   877          "imageVersion": {
   878            "type": "string"
   879          },
   880          "variant": {
   881            "type": "string"
   882          },
   883          "variantID": {
   884            "type": "string"
   885          },
   886          "homeURL": {
   887            "type": "string"
   888          },
   889          "supportURL": {
   890            "type": "string"
   891          },
   892          "bugReportURL": {
   893            "type": "string"
   894          },
   895          "privacyPolicyURL": {
   896            "type": "string"
   897          },
   898          "cpeName": {
   899            "type": "string"
   900          },
   901          "supportEnd": {
   902            "type": "string"
   903          }
   904        },
   905        "type": "object"
   906      },
   907      "Location": {
   908        "properties": {
   909          "path": {
   910            "type": "string"
   911          },
   912          "layerID": {
   913            "type": "string"
   914          },
   915          "annotations": {
   916            "patternProperties": {
   917              ".*": {
   918                "type": "string"
   919              }
   920            },
   921            "type": "object"
   922          }
   923        },
   924        "type": "object",
   925        "required": [
   926          "path"
   927        ]
   928      },
   929      "MixLockMetadata": {
   930        "properties": {
   931          "name": {
   932            "type": "string"
   933          },
   934          "version": {
   935            "type": "string"
   936          },
   937          "pkgHash": {
   938            "type": "string"
   939          },
   940          "pkgHashExt": {
   941            "type": "string"
   942          }
   943        },
   944        "type": "object",
   945        "required": [
   946          "name",
   947          "version",
   948          "pkgHash",
   949          "pkgHashExt"
   950        ]
   951      },
   952      "NixStoreMetadata": {
   953        "properties": {
   954          "outputHash": {
   955            "type": "string"
   956          },
   957          "output": {
   958            "type": "string"
   959          },
   960          "files": {
   961            "items": {
   962              "type": "string"
   963            },
   964            "type": "array"
   965          }
   966        },
   967        "type": "object",
   968        "required": [
   969          "outputHash",
   970          "files"
   971        ]
   972      },
   973      "NpmPackageJSONMetadata": {
   974        "properties": {
   975          "name": {
   976            "type": "string"
   977          },
   978          "version": {
   979            "type": "string"
   980          },
   981          "author": {
   982            "type": "string"
   983          },
   984          "licenses": {
   985            "items": {
   986              "type": "string"
   987            },
   988            "type": "array"
   989          },
   990          "homepage": {
   991            "type": "string"
   992          },
   993          "description": {
   994            "type": "string"
   995          },
   996          "url": {
   997            "type": "string"
   998          },
   999          "private": {
  1000            "type": "boolean"
  1001          }
  1002        },
  1003        "type": "object",
  1004        "required": [
  1005          "name",
  1006          "version",
  1007          "author",
  1008          "licenses",
  1009          "homepage",
  1010          "description",
  1011          "url",
  1012          "private"
  1013        ]
  1014      },
  1015      "NpmPackageLockJSONMetadata": {
  1016        "properties": {
  1017          "resolved": {
  1018            "type": "string"
  1019          },
  1020          "integrity": {
  1021            "type": "string"
  1022          }
  1023        },
  1024        "type": "object",
  1025        "required": [
  1026          "resolved",
  1027          "integrity"
  1028        ]
  1029      },
  1030      "Package": {
  1031        "properties": {
  1032          "id": {
  1033            "type": "string"
  1034          },
  1035          "name": {
  1036            "type": "string"
  1037          },
  1038          "version": {
  1039            "type": "string"
  1040          },
  1041          "type": {
  1042            "type": "string"
  1043          },
  1044          "foundBy": {
  1045            "type": "string"
  1046          },
  1047          "locations": {
  1048            "items": {
  1049              "$ref": "#/$defs/Location"
  1050            },
  1051            "type": "array"
  1052          },
  1053          "licenses": {
  1054            "items": {
  1055              "type": "string"
  1056            },
  1057            "type": "array"
  1058          },
  1059          "language": {
  1060            "type": "string"
  1061          },
  1062          "cpes": {
  1063            "items": {
  1064              "type": "string"
  1065            },
  1066            "type": "array"
  1067          },
  1068          "purl": {
  1069            "type": "string"
  1070          },
  1071          "metadataType": {
  1072            "type": "string"
  1073          },
  1074          "metadata": {
  1075            "anyOf": [
  1076              {
  1077                "type": "null"
  1078              },
  1079              {
  1080                "$ref": "#/$defs/AlpmMetadata"
  1081              },
  1082              {
  1083                "$ref": "#/$defs/ApkMetadata"
  1084              },
  1085              {
  1086                "$ref": "#/$defs/BinaryMetadata"
  1087              },
  1088              {
  1089                "$ref": "#/$defs/CargoPackageMetadata"
  1090              },
  1091              {
  1092                "$ref": "#/$defs/CocoapodsMetadata"
  1093              },
  1094              {
  1095                "$ref": "#/$defs/ConanLockMetadata"
  1096              },
  1097              {
  1098                "$ref": "#/$defs/ConanMetadata"
  1099              },
  1100              {
  1101                "$ref": "#/$defs/DartPubMetadata"
  1102              },
  1103              {
  1104                "$ref": "#/$defs/DotnetDepsMetadata"
  1105              },
  1106              {
  1107                "$ref": "#/$defs/DpkgMetadata"
  1108              },
  1109              {
  1110                "$ref": "#/$defs/GemMetadata"
  1111              },
  1112              {
  1113                "$ref": "#/$defs/GolangBinMetadata"
  1114              },
  1115              {
  1116                "$ref": "#/$defs/GolangModMetadata"
  1117              },
  1118              {
  1119                "$ref": "#/$defs/HackageMetadata"
  1120              },
  1121              {
  1122                "$ref": "#/$defs/JavaMetadata"
  1123              },
  1124              {
  1125                "$ref": "#/$defs/KbPackageMetadata"
  1126              },
  1127              {
  1128                "$ref": "#/$defs/LinuxKernelMetadata"
  1129              },
  1130              {
  1131                "$ref": "#/$defs/LinuxKernelModuleMetadata"
  1132              },
  1133              {
  1134                "$ref": "#/$defs/MixLockMetadata"
  1135              },
  1136              {
  1137                "$ref": "#/$defs/NixStoreMetadata"
  1138              },
  1139              {
  1140                "$ref": "#/$defs/NpmPackageJSONMetadata"
  1141              },
  1142              {
  1143                "$ref": "#/$defs/NpmPackageLockJSONMetadata"
  1144              },
  1145              {
  1146                "$ref": "#/$defs/PhpComposerJSONMetadata"
  1147              },
  1148              {
  1149                "$ref": "#/$defs/PortageMetadata"
  1150              },
  1151              {
  1152                "$ref": "#/$defs/PythonPackageMetadata"
  1153              },
  1154              {
  1155                "$ref": "#/$defs/PythonPipfileLockMetadata"
  1156              },
  1157              {
  1158                "$ref": "#/$defs/RebarLockMetadata"
  1159              },
  1160              {
  1161                "$ref": "#/$defs/RpmMetadata"
  1162              }
  1163            ]
  1164          }
  1165        },
  1166        "type": "object",
  1167        "required": [
  1168          "id",
  1169          "name",
  1170          "version",
  1171          "type",
  1172          "foundBy",
  1173          "locations",
  1174          "licenses",
  1175          "language",
  1176          "cpes",
  1177          "purl"
  1178        ]
  1179      },
  1180      "PhpComposerAuthors": {
  1181        "properties": {
  1182          "name": {
  1183            "type": "string"
  1184          },
  1185          "email": {
  1186            "type": "string"
  1187          },
  1188          "homepage": {
  1189            "type": "string"
  1190          }
  1191        },
  1192        "type": "object",
  1193        "required": [
  1194          "name"
  1195        ]
  1196      },
  1197      "PhpComposerExternalReference": {
  1198        "properties": {
  1199          "type": {
  1200            "type": "string"
  1201          },
  1202          "url": {
  1203            "type": "string"
  1204          },
  1205          "reference": {
  1206            "type": "string"
  1207          },
  1208          "shasum": {
  1209            "type": "string"
  1210          }
  1211        },
  1212        "type": "object",
  1213        "required": [
  1214          "type",
  1215          "url",
  1216          "reference"
  1217        ]
  1218      },
  1219      "PhpComposerJSONMetadata": {
  1220        "properties": {
  1221          "name": {
  1222            "type": "string"
  1223          },
  1224          "version": {
  1225            "type": "string"
  1226          },
  1227          "source": {
  1228            "$ref": "#/$defs/PhpComposerExternalReference"
  1229          },
  1230          "dist": {
  1231            "$ref": "#/$defs/PhpComposerExternalReference"
  1232          },
  1233          "require": {
  1234            "patternProperties": {
  1235              ".*": {
  1236                "type": "string"
  1237              }
  1238            },
  1239            "type": "object"
  1240          },
  1241          "provide": {
  1242            "patternProperties": {
  1243              ".*": {
  1244                "type": "string"
  1245              }
  1246            },
  1247            "type": "object"
  1248          },
  1249          "require-dev": {
  1250            "patternProperties": {
  1251              ".*": {
  1252                "type": "string"
  1253              }
  1254            },
  1255            "type": "object"
  1256          },
  1257          "suggest": {
  1258            "patternProperties": {
  1259              ".*": {
  1260                "type": "string"
  1261              }
  1262            },
  1263            "type": "object"
  1264          },
  1265          "type": {
  1266            "type": "string"
  1267          },
  1268          "notification-url": {
  1269            "type": "string"
  1270          },
  1271          "bin": {
  1272            "items": {
  1273              "type": "string"
  1274            },
  1275            "type": "array"
  1276          },
  1277          "license": {
  1278            "items": {
  1279              "type": "string"
  1280            },
  1281            "type": "array"
  1282          },
  1283          "authors": {
  1284            "items": {
  1285              "$ref": "#/$defs/PhpComposerAuthors"
  1286            },
  1287            "type": "array"
  1288          },
  1289          "description": {
  1290            "type": "string"
  1291          },
  1292          "homepage": {
  1293            "type": "string"
  1294          },
  1295          "keywords": {
  1296            "items": {
  1297              "type": "string"
  1298            },
  1299            "type": "array"
  1300          },
  1301          "time": {
  1302            "type": "string"
  1303          }
  1304        },
  1305        "type": "object",
  1306        "required": [
  1307          "name",
  1308          "version",
  1309          "source",
  1310          "dist"
  1311        ]
  1312      },
  1313      "PomParent": {
  1314        "properties": {
  1315          "groupId": {
  1316            "type": "string"
  1317          },
  1318          "artifactId": {
  1319            "type": "string"
  1320          },
  1321          "version": {
  1322            "type": "string"
  1323          }
  1324        },
  1325        "type": "object",
  1326        "required": [
  1327          "groupId",
  1328          "artifactId",
  1329          "version"
  1330        ]
  1331      },
  1332      "PomProject": {
  1333        "properties": {
  1334          "path": {
  1335            "type": "string"
  1336          },
  1337          "parent": {
  1338            "$ref": "#/$defs/PomParent"
  1339          },
  1340          "groupId": {
  1341            "type": "string"
  1342          },
  1343          "artifactId": {
  1344            "type": "string"
  1345          },
  1346          "version": {
  1347            "type": "string"
  1348          },
  1349          "name": {
  1350            "type": "string"
  1351          },
  1352          "description": {
  1353            "type": "string"
  1354          },
  1355          "url": {
  1356            "type": "string"
  1357          }
  1358        },
  1359        "type": "object",
  1360        "required": [
  1361          "path",
  1362          "groupId",
  1363          "artifactId",
  1364          "version",
  1365          "name"
  1366        ]
  1367      },
  1368      "PomProperties": {
  1369        "properties": {
  1370          "path": {
  1371            "type": "string"
  1372          },
  1373          "name": {
  1374            "type": "string"
  1375          },
  1376          "groupId": {
  1377            "type": "string"
  1378          },
  1379          "artifactId": {
  1380            "type": "string"
  1381          },
  1382          "version": {
  1383            "type": "string"
  1384          },
  1385          "extraFields": {
  1386            "patternProperties": {
  1387              ".*": {
  1388                "type": "string"
  1389              }
  1390            },
  1391            "type": "object"
  1392          }
  1393        },
  1394        "type": "object",
  1395        "required": [
  1396          "path",
  1397          "name",
  1398          "groupId",
  1399          "artifactId",
  1400          "version"
  1401        ]
  1402      },
  1403      "PortageFileRecord": {
  1404        "properties": {
  1405          "path": {
  1406            "type": "string"
  1407          },
  1408          "digest": {
  1409            "$ref": "#/$defs/Digest"
  1410          }
  1411        },
  1412        "type": "object",
  1413        "required": [
  1414          "path"
  1415        ]
  1416      },
  1417      "PortageMetadata": {
  1418        "properties": {
  1419          "installedSize": {
  1420            "type": "integer"
  1421          },
  1422          "files": {
  1423            "items": {
  1424              "$ref": "#/$defs/PortageFileRecord"
  1425            },
  1426            "type": "array"
  1427          }
  1428        },
  1429        "type": "object",
  1430        "required": [
  1431          "installedSize",
  1432          "files"
  1433        ]
  1434      },
  1435      "PythonDirectURLOriginInfo": {
  1436        "properties": {
  1437          "url": {
  1438            "type": "string"
  1439          },
  1440          "commitId": {
  1441            "type": "string"
  1442          },
  1443          "vcs": {
  1444            "type": "string"
  1445          }
  1446        },
  1447        "type": "object",
  1448        "required": [
  1449          "url"
  1450        ]
  1451      },
  1452      "PythonFileDigest": {
  1453        "properties": {
  1454          "algorithm": {
  1455            "type": "string"
  1456          },
  1457          "value": {
  1458            "type": "string"
  1459          }
  1460        },
  1461        "type": "object",
  1462        "required": [
  1463          "algorithm",
  1464          "value"
  1465        ]
  1466      },
  1467      "PythonFileRecord": {
  1468        "properties": {
  1469          "path": {
  1470            "type": "string"
  1471          },
  1472          "digest": {
  1473            "$ref": "#/$defs/PythonFileDigest"
  1474          },
  1475          "size": {
  1476            "type": "string"
  1477          }
  1478        },
  1479        "type": "object",
  1480        "required": [
  1481          "path"
  1482        ]
  1483      },
  1484      "PythonPackageMetadata": {
  1485        "properties": {
  1486          "name": {
  1487            "type": "string"
  1488          },
  1489          "version": {
  1490            "type": "string"
  1491          },
  1492          "license": {
  1493            "type": "string"
  1494          },
  1495          "author": {
  1496            "type": "string"
  1497          },
  1498          "authorEmail": {
  1499            "type": "string"
  1500          },
  1501          "platform": {
  1502            "type": "string"
  1503          },
  1504          "files": {
  1505            "items": {
  1506              "$ref": "#/$defs/PythonFileRecord"
  1507            },
  1508            "type": "array"
  1509          },
  1510          "sitePackagesRootPath": {
  1511            "type": "string"
  1512          },
  1513          "topLevelPackages": {
  1514            "items": {
  1515              "type": "string"
  1516            },
  1517            "type": "array"
  1518          },
  1519          "directUrlOrigin": {
  1520            "$ref": "#/$defs/PythonDirectURLOriginInfo"
  1521          }
  1522        },
  1523        "type": "object",
  1524        "required": [
  1525          "name",
  1526          "version",
  1527          "license",
  1528          "author",
  1529          "authorEmail",
  1530          "platform",
  1531          "sitePackagesRootPath"
  1532        ]
  1533      },
  1534      "PythonPipfileLockMetadata": {
  1535        "properties": {
  1536          "hashes": {
  1537            "items": {
  1538              "type": "string"
  1539            },
  1540            "type": "array"
  1541          },
  1542          "index": {
  1543            "type": "string"
  1544          }
  1545        },
  1546        "type": "object",
  1547        "required": [
  1548          "hashes",
  1549          "index"
  1550        ]
  1551      },
  1552      "RebarLockMetadata": {
  1553        "properties": {
  1554          "name": {
  1555            "type": "string"
  1556          },
  1557          "version": {
  1558            "type": "string"
  1559          },
  1560          "pkgHash": {
  1561            "type": "string"
  1562          },
  1563          "pkgHashExt": {
  1564            "type": "string"
  1565          }
  1566        },
  1567        "type": "object",
  1568        "required": [
  1569          "name",
  1570          "version",
  1571          "pkgHash",
  1572          "pkgHashExt"
  1573        ]
  1574      },
  1575      "Relationship": {
  1576        "properties": {
  1577          "parent": {
  1578            "type": "string"
  1579          },
  1580          "child": {
  1581            "type": "string"
  1582          },
  1583          "type": {
  1584            "type": "string"
  1585          },
  1586          "metadata": true
  1587        },
  1588        "type": "object",
  1589        "required": [
  1590          "parent",
  1591          "child",
  1592          "type"
  1593        ]
  1594      },
  1595      "RpmMetadata": {
  1596        "properties": {
  1597          "name": {
  1598            "type": "string"
  1599          },
  1600          "version": {
  1601            "type": "string"
  1602          },
  1603          "epoch": {
  1604            "oneOf": [
  1605              {
  1606                "type": "integer"
  1607              },
  1608              {
  1609                "type": "null"
  1610              }
  1611            ]
  1612          },
  1613          "architecture": {
  1614            "type": "string"
  1615          },
  1616          "release": {
  1617            "type": "string"
  1618          },
  1619          "sourceRpm": {
  1620            "type": "string"
  1621          },
  1622          "size": {
  1623            "type": "integer"
  1624          },
  1625          "license": {
  1626            "type": "string"
  1627          },
  1628          "vendor": {
  1629            "type": "string"
  1630          },
  1631          "modularityLabel": {
  1632            "type": "string"
  1633          },
  1634          "files": {
  1635            "items": {
  1636              "$ref": "#/$defs/RpmdbFileRecord"
  1637            },
  1638            "type": "array"
  1639          }
  1640        },
  1641        "type": "object",
  1642        "required": [
  1643          "name",
  1644          "version",
  1645          "epoch",
  1646          "architecture",
  1647          "release",
  1648          "sourceRpm",
  1649          "size",
  1650          "license",
  1651          "vendor",
  1652          "modularityLabel",
  1653          "files"
  1654        ]
  1655      },
  1656      "RpmdbFileRecord": {
  1657        "properties": {
  1658          "path": {
  1659            "type": "string"
  1660          },
  1661          "mode": {
  1662            "type": "integer"
  1663          },
  1664          "size": {
  1665            "type": "integer"
  1666          },
  1667          "digest": {
  1668            "$ref": "#/$defs/Digest"
  1669          },
  1670          "userName": {
  1671            "type": "string"
  1672          },
  1673          "groupName": {
  1674            "type": "string"
  1675          },
  1676          "flags": {
  1677            "type": "string"
  1678          }
  1679        },
  1680        "type": "object",
  1681        "required": [
  1682          "path",
  1683          "mode",
  1684          "size",
  1685          "digest",
  1686          "userName",
  1687          "groupName",
  1688          "flags"
  1689        ]
  1690      },
  1691      "Schema": {
  1692        "properties": {
  1693          "version": {
  1694            "type": "string"
  1695          },
  1696          "url": {
  1697            "type": "string"
  1698          }
  1699        },
  1700        "type": "object",
  1701        "required": [
  1702          "version",
  1703          "url"
  1704        ]
  1705      },
  1706      "SearchResult": {
  1707        "properties": {
  1708          "classification": {
  1709            "type": "string"
  1710          },
  1711          "lineNumber": {
  1712            "type": "integer"
  1713          },
  1714          "lineOffset": {
  1715            "type": "integer"
  1716          },
  1717          "seekPosition": {
  1718            "type": "integer"
  1719          },
  1720          "length": {
  1721            "type": "integer"
  1722          },
  1723          "value": {
  1724            "type": "string"
  1725          }
  1726        },
  1727        "type": "object",
  1728        "required": [
  1729          "classification",
  1730          "lineNumber",
  1731          "lineOffset",
  1732          "seekPosition",
  1733          "length"
  1734        ]
  1735      },
  1736      "Secrets": {
  1737        "properties": {
  1738          "location": {
  1739            "$ref": "#/$defs/Coordinates"
  1740          },
  1741          "secrets": {
  1742            "items": {
  1743              "$ref": "#/$defs/SearchResult"
  1744            },
  1745            "type": "array"
  1746          }
  1747        },
  1748        "type": "object",
  1749        "required": [
  1750          "location",
  1751          "secrets"
  1752        ]
  1753      },
  1754      "Source": {
  1755        "properties": {
  1756          "id": {
  1757            "type": "string"
  1758          },
  1759          "type": {
  1760            "type": "string"
  1761          },
  1762          "target": true
  1763        },
  1764        "type": "object",
  1765        "required": [
  1766          "id",
  1767          "type",
  1768          "target"
  1769        ]
  1770      }
  1771    }
  1772  }