forked from google/deps.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
api.proto
855 lines (742 loc) · 30.1 KB
/
api.proto
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
syntax = "proto3";
package deps_dev.v3;
import "google/api/annotations.proto";
import "google/protobuf/timestamp.proto";
option go_package = "deps.dev/api/v3";
// The Deps.dev Insights API provides information about open source software
// packages, projects, and security advisories. The information is gathered
// from upstream services like npm, GitHub, and OSV, and augmented by computing
// dependencies and relationships between entities.
service Insights {
// GetPackage returns information about a package, including a list of its
// available versions, with the default version marked if known.
rpc GetPackage(GetPackageRequest) returns (Package) {
option (google.api.http) = {
get: "/v3/systems/{package_key.system}/packages/{package_key.name}"
};
}
// GetVersion returns information about a specific package version, including
// its licenses and any security advisories known to affect it.
rpc GetVersion(GetVersionRequest) returns (Version) {
option (google.api.http) = {
get: "/v3/systems/{version_key.system}/packages/{version_key.name}/versions/{version_key.version}"
};
}
// GetRequirements returns the requirements for a given version in a
// system-specific format. Requirements are currently available for
// Maven, npm and NuGet.
//
// Requirements are the dependency constraints specified by the version.
rpc GetRequirements(GetRequirementsRequest) returns (Requirements) {
option (google.api.http) = {
get: "/v3/systems/{version_key.system}/packages/{version_key.name}/versions/{version_key.version}:requirements"
};
}
// GetDependencies returns a resolved dependency graph for the given package
// version. Dependencies are currently available for Go, npm, Cargo, Maven
// and PyPI.
//
// Dependencies are the resolution of the requirements (dependency
// constraints) specified by a version.
//
// The dependency graph should be similar to one produced by installing the
// package version on a generic 64-bit Linux system, with no other
// dependencies present. The precise meaning of this varies from system to
// system.
rpc GetDependencies(GetDependenciesRequest) returns (Dependencies) {
option (google.api.http) = {
get: "/v3/systems/{version_key.system}/packages/{version_key.name}/versions/{version_key.version}:dependencies"
};
}
// GetProject returns information about projects hosted by GitHub, GitLab, or
// BitBucket, when known to us.
rpc GetProject(GetProjectRequest) returns (Project) {
option (google.api.http) = {
get: "/v3/projects/{project_key.id}"
};
}
// GetProjectPackageVersions returns known mappings between the requested
// project and package versions.
// At most 1500 package versions are returned. Mappings which were derived
// from attestations are served first.
rpc GetProjectPackageVersions(GetProjectPackageVersionsRequest) returns (ProjectPackageVersions) {
option (google.api.http) = {
get: "/v3/projects/{project_key.id}:packageversions"
};
}
// GetAdvisory returns information about security advisories hosted by OSV.
rpc GetAdvisory(GetAdvisoryRequest) returns (Advisory) {
option (google.api.http) = {
get: "/v3/advisories/{advisory_key.id}"
};
}
// Query returns information about multiple package versions, which can be
// specified by name, content hash, or both. If a hash was specified in the
// request, it returns the artifacts that matched the hash.
//
// Querying by content hash is currently supported for npm, Cargo, Maven, and
// NuGet. It is typical for hash queries to return many results; hashes are
// matched against multiple release artifacts (such as JAR files) that
// comprise package versions, and any given artifact may appear in several
// package versions.
rpc Query(QueryRequest) returns (QueryResult) {
option (google.api.http) = {
// Request fields are passed as query parameters.
get: "/v3/query"
};
}
}
// System identifies a package management system.
enum System {
SYSTEM_UNSPECIFIED = 0;
GO = 1;
NPM = 3;
CARGO = 4;
MAVEN = 6;
PYPI = 7;
NUGET = 8;
}
// PackageKey identifies a package by name.
message PackageKey {
// The package management system containing the package.
System system = 1;
// The name of the package.
string name = 2;
}
// VersionKey identifies a package version by name.
message VersionKey {
// The package management system containing the package.
System system = 1;
// The name of the package.
string name = 2;
// The version of the package.
string version = 3;
}
// ProjectKey identifies a project.
message ProjectKey {
// A project identifier of the form `github.com/user/repo`,
// `gitlab.com/user/repo`, or `bitbucket.org/user/repo`.
string id = 1;
}
// AdvisoryKey identifies a security advisory.
message AdvisoryKey {
// The OSV identifier for the security advisory.
string id = 1;
}
// HashType identifies a function used to produce a hash.
enum HashType {
HASH_TYPE_UNSPECIFIED = 0;
MD5 = 1;
SHA1 = 2;
SHA256 = 3;
SHA512 = 4;
}
// Hash represents the output of a hash function. These messages are used to
// identify package version artifacts by content hash.
message Hash {
// The function used to produce this hash.
HashType type = 1;
// A hash value.
bytes value = 2;
}
// Link represents a link declared by or derived from package version metadata,
// to an external web resource such as a homepage or source code repository.
message Link {
// A label describing the resource that the link points to.
string label = 1;
// The URL of the link.
string url = 2;
}
// DependencyRelation describes the relation of a node within a dependency
// graph.
enum DependencyRelation {
DEPENDENCY_RELATION_UNSPECIFIED = 0;
SELF = 1;
DIRECT = 2;
INDIRECT = 3;
}
// SLSAProvenance contains provenance information extracted from a SLSA
// provenance statement.
message SLSAProvenance {
// The source code repository used to build the version.
string source_repository = 1;
// The commit of the source code repository the version was built from.
string commit = 2;
// The URL of the provenance statement if there is one.
string url = 3;
// The Sigstore bundle containing this attestation was verified using the
// [sigstore-go](https://github.com/sigstore/sigstore-go) library.
bool verified = 4;
}
// Attestation represents a generic attestation. Fields are populated based
// on 'type'.
message Attestation {
// The type of attestation.
// One of https://slsa.dev/provenance/v0.2, https://slsa.dev/provenance/v1,
// https://docs.pypi.org/attestations/publish/v1.
string type = 1;
// The URL of the attestation if there is one.
string url = 2;
// The attestation has been cryptographically verified by deps.dev.
// For attestations distributed in a Sigstore bundle, this field indicates
// the bundle was verified using the
// [sigstore-go](https://github.com/sigstore/sigstore-go) library.
bool verified = 3;
// Only set if type is https://slsa.dev/provenance/v0.2,
// https://slsa.dev/provenance/v1,
// https://docs.pypi.org/attestations/publish/v1.
// The source code repository used to build the version.
string source_repository = 4;
// The commit of the source code repository the version was built from.
string commit = 5;
}
// GetPackageRequest identifies a package for which to return information.
message GetPackageRequest {
PackageKey package_key = 1;
}
// Package holds information about a package, including a list of its available
// versions, with the default version marked if known.
message Package {
// The name of the package. Note that it may differ from the name in the
// request, due to canonicalization.
PackageKey package_key = 1;
message Version {
// The name of the version. Note that the package name may differ from the
// name in the request, due to canonicalization.
VersionKey version_key = 1;
// The time when this package version was published, if available, as
// reported by the package management authority.
google.protobuf.Timestamp published_at = 3;
// If true, this is the default version of the package: the version that is
// installed when no version is specified. The precise meaning of this is
// system-specific, but it is commonly the version with the greatest
// version number, ignoring pre-release versions.
bool is_default = 2;
}
// The available versions of the package.
repeated Version versions = 2;
}
// GetVersionRequest identifies a package version for which to return information.
message GetVersionRequest {
VersionKey version_key = 1;
}
// Version holds information about a package version.
message Version {
// The name of the package version. Note that the package and version name
// may differ from names specified in requests, if applicable, due to
// canonicalization.
VersionKey version_key = 1;
// The time when this package version was published, if available, as
// reported by the package management authority.
google.protobuf.Timestamp published_at = 6;
// If true, this is the default version of the package: the version that is
// installed when no version is specified. The precise meaning of this is
// system-specific, but it is commonly the version with the greatest version
// number, ignoring pre-release versions.
bool is_default = 2;
// The licenses governing the use of this package version.
//
// We identify licenses as
// [SPDX 2.1](https://spdx.dev/spdx-specification-21-web-version/)
// expressions. When there is no associated SPDX identifier, we identify a
// license as "non-standard". When we are unable to obtain license
// information, this field is empty. When more than one license is listed,
// their relationship is unspecified.
//
// For Cargo, Maven, npm, NuGet, and PyPI, license information is read from
// the package metadata. For Go, license information is determined using the
// [licensecheck](https://github.com/google/licensecheck) package.
//
// License information is not intended to be legal advice, and you should
// independently verify the license or terms of any software for your own
// needs.
repeated string licenses = 3;
// Security advisories known to affect this package version directly. Further
// information can be requested using the Advisory method.
//
// Note that this field does not include advisories that affect dependencies
// of this package version.
repeated AdvisoryKey advisory_keys = 4;
// Links declared by or derived from package version metadata, to external
// web resources such as a homepage or source code repository. Note that
// these links are not verified for correctness.
repeated Link links = 5;
// SLSA provenance information for this package version. Extracted from a
// SLSA provenance attestation. This is only populated for npm package
// versions. See the 'attestations' field for more attestations (including
// SLSA provenance) for all systems.
repeated SLSAProvenance slsa_provenances = 7;
// Attestations for this package version.
repeated Attestation attestations = 14;
// URLs for the package management registries this package version is
// available from.
// Only set for systems that use a central repository for package
// distribution: Cargo, Maven, npm, NuGet, and PyPI.
repeated string registries = 8;
message Project {
// The identifier for the project.
ProjectKey project_key = 1;
// How the mapping between project and package version was discovered.
ProjectRelationProvenance relation_provenance = 2;
// What the relationship between the project and the package version is.
ProjectRelationType relation_type = 3;
}
// Projects that are related to this package version.
repeated Project related_projects = 10;
}
// GetRequirementsRequest identifies a version for which to return
// requirements.
message GetRequirementsRequest {
VersionKey version_key = 1;
}
// Requirements contains a system-specific representation of the requirements
// specified by a package version. Only one of its fields will be set.
message Requirements {
message NuGet {
message DependencyGroup {
// The target framework that this dependency group is for.
string target_framework = 1;
message Dependency {
// The name of the package.
string name = 1;
// The requirement on the package.
string requirement = 2;
}
// The requirements belonging to this dependency group.
repeated Dependency dependencies = 2;
}
// The requirements grouped by target framework.
repeated DependencyGroup dependency_groups = 1;
}
// The NuGet-specific representation of the version's requirements.
//
// Note that the term "dependency" is used here to mean "a single unresolved
// requirement" to be consistent with how the term is used in the NuGet
// ecosystem. This is different to how it is used elsewhere in the deps.dev
// API.
NuGet nuget = 1;
message NPM {
message Dependencies {
message Dependency {
// The name of the package, the key in the original object.
string name = 1;
// The requirement, the corresponding value from the original object.
string requirement = 2;
}
// The "dependencies" field of a package.json, represented as a list of
// name, requirement pairs.
repeated Dependency dependencies = 1;
// The "devDependencies" field of a package.json. The format is the
// same as "dependencies".
repeated Dependency dev_dependencies = 2;
// The "optionalDependencies" field of a package.json. The format is
// the same as "dependencies".
repeated Dependency optional_dependencies = 3;
// The "peerDependencies" field of a package.json. The format is the
// same as "dependencies".
repeated Dependency peer_dependencies = 4;
// The "bundleDependencies" field of a package.json: a list of package
// names. In the package.json this may also just be the boolean value
// "true", in which case this field will contain the names of all the
// dependencies from the "dependencies" field.
repeated string bundle_dependencies = 5;
}
message Bundle {
// The path inside the tarball where this dependency was found.
string path = 1;
// The name of the bundled package, as declared inside the bundled
// package.json.
string name = 2;
// The version of this package, as declared inside the bundled
// package.json.
string version = 3;
// The dependency-related fields from the bundled package.json.
Dependencies dependencies = 4;
}
// The dependency-related fields declared in the requested package version's
// package.json.
Dependencies dependencies = 1;
// Contents of any additional package.json files found inside the
// "node_modules" folder of the version's tarball, including nested
// "node_modules".
repeated Bundle bundled = 2;
}
// The npm-specific representation of the version's requirements.
//
// Note that the term "dependency" is used here to mean "a single unresolved
// requirement" to be consistent with how the term is used in the npm
// ecosystem. This is different to how it is used elsewhere in the deps.dev
// API.
NPM npm = 2;
message Maven {
message Dependency {
// The name of the package.
string name = 1;
// The version requirement of the dependency.
string version = 2;
// The classifier of the dependency, which distinguishes artifacts that
// differ in content.
string classifier = 3;
// The type of the dependency, defaults to jar.
string type = 4;
// The scope of the dependency, specifies how to limit the transitivity
// of a dependency.
string scope = 5;
// Whether the dependency is optional or not.
string optional = 6;
// The dependencies to be excluded, in the form of a list of package
// names.
// Exclusions may contain wildcards in both groupID and artifactID.
repeated string exclusions = 7;
}
message Property {
// The name of the property.
string name = 1;
// The value of the property.
string value = 2;
}
message Repository {
// The ID of the repository.
string id = 1;
// The URL of the repository.
string url = 2;
// Whether the description of the repository follows a common layout.
string layout = 3;
// Whether the repository is enabled for release downloads.
string releases_enabled = 4;
// Whether the repository is enabled for snapshot downloads.
string snapshots_enabled = 5;
}
message Profile {
message Activation {
message JDK {
// The JDK requirement to activate the profile.
string jdk = 1;
}
message OS {
// The name of the operating system.
string name = 1;
// The family of the operating system.
string family = 2;
// The CPU architecture of the operating system,
string arch = 3;
// The version of the operating system.
string version = 4;
}
message Property {
// The property requirement to activate the profile.
// This can be a system property or CLI user property.
Maven.Property property = 1;
}
message File {
// The name of the file that its existence activates the profile.
string exists = 1;
// The name of the file, activate the profile if the file is missing.
string missing = 2;
}
// Whether the profile is active by default.
string active_by_default = 1;
// The JDK requirement of the activation.
JDK jdk = 2;
// The operating system requirement of the activation.
OS os = 3;
// The property requirement of the activation.
Property property = 4;
// The file requirement of the activation.
File file = 5;
}
// The ID of the profile.
string id = 1;
// The activation requirement of the profile.
Activation activation = 2;
// The dependencies specified in the profile.
repeated Dependency dependencies = 3;
// The dependency management specified in the profile.
repeated Dependency dependency_management = 4;
// The properties specified in the profile.
repeated Property properties = 5;
// The repositories specified in the profile.
repeated Repository repositories = 6;
}
// The direct parent of a package version.
VersionKey parent = 1;
// The list of dependencies.
repeated Dependency dependencies = 2;
// The list of dependency management.
// The format is the same as dependencies.
repeated Dependency dependency_management = 3;
// The list of properties, used to resolve placeholders.
repeated Property properties = 4;
// The list of repositories.
repeated Repository repositories = 5;
// The list of profiles.
repeated Profile profiles = 6;
}
// The Maven-specific representation of the version's requirements.
//
// Note that the term "dependency" is used here to mean "a single unresolved
// requirement" to be consistent with how the term is used in the Maven
// ecosystem. This is different to how it is used elsewhere in the deps.dev
// API.
//
// This data is as it is declared in a version POM file. The data in parent
// POMs are not merged.
// Any string field may contain references to properties, and the properties
// are not interpolated.
Maven maven = 3;
}
// GetDependenciesRequest identifies a package version for which to return
// dependencies.
message GetDependenciesRequest {
VersionKey version_key = 1;
}
// Dependencies holds a resolved dependency graph for a package version.
//
// The dependency graph should be similar to one produced by installing the
// package version on a generic 64-bit Linux system, with no other dependencies
// present. The precise meaning of this varies from system to system.
message Dependencies {
// Node represents a node in a resolved dependency graph.
message Node {
// The package version represented by this node. Note that the package and
// version name may differ from the names in the request, if provided, due
// to canonicalization.
//
// In some systems, a graph may contain multiple nodes for the same package
// version.
VersionKey version_key = 1;
// If true, this is a bundled dependency.
//
// For bundled dependencies, the package name in the version key encodes
// how the dependency is bundled. As an example, a bundled dependency with
// a name like "a>1.2.3>b>c" is part of the dependency graph of package "a"
// at version "1.2.3", and has the local name "c". It may or may not be the
// same as a package with the global name "c".
bool bundled = 2;
// Whether this node represents a direct or indirect dependency within this
// dependency graph. Note that it's possible for a dependency to be both
// direct and indirect; if so, it is marked as direct.
DependencyRelation relation = 4;
// Errors associated with this node of the graph, such as an unresolved
// dependency requirement. An error on a node may imply the graph as a
// whole is incorrect. These error messages have no defined format and are
// intended for human consumption.
repeated string errors = 3;
}
// The nodes of the dependency graph. The first node is the root of the graph.
repeated Node nodes = 1;
// Edge represents a directed edge in a resolved dependency graph: a
// dependency relation between two nodes.
message Edge {
// The node declaring the dependency, specified as an index into the list of
// nodes.
uint32 from_node = 1;
// The node resolving the dependency, specified as an index into the list of
// nodes.
uint32 to_node = 2;
// The requirement resolved by this edge, as declared by the "from" node.
// The meaning of this field is system-specific. As an example, in npm, the
// requirement "^1.0.0" may be resolved by the version "1.2.3".
string requirement = 3;
}
// The edges of the dependency graph.
repeated Edge edges = 2;
// Any error associated with the dependency graph that is not specific to a
// node. An error here may imply the graph as a whole is incorrect.
// This error message has no defined format and is intended for human
// consumption.
string error = 3;
}
// GetProjectRequest identifies a project for which to return information.
message GetProjectRequest {
ProjectKey project_key = 1;
}
// Project holds information about a project hosted by GitHub, GitLab, or
// Bitbucket.
message Project {
// The identifier for the project. Note that this may differ from the
// identifier in the request, due to canonicalization.
ProjectKey project_key = 1;
// The number of open issues reported by the project host.
// Only available for GitHub and GitLab.
int32 open_issues_count = 2;
// The number of stars reported by the project host.
// Only available for GitHub and GitLab.
int32 stars_count = 3;
// The number of forks reported by the project host.
// Only available for GitHub and GitLab.
int32 forks_count = 4;
// The license reported by the project host.
string license = 5;
// The description reported by the project host.
string description = 6;
// The homepage reported by the project host.
string homepage = 7;
message Scorecard {
// The date at which the scorecard was produced.
// The time portion of this field is midnight UTC.
google.protobuf.Timestamp date = 1;
message Repository {
// The source code repository the scorecard was produced from.
string name = 1;
// The source code commit the scorecard was produced from.
string commit = 2;
}
// The source code repository and commit the scorecard was produced from.
Repository repository = 2;
message ScorecardDetails {
// The version of the Scorecard program used to produce the scorecard.
string version = 1;
// The commit of the Scorecard program used to produce the scorecard.
string commit = 2;
}
// The version and commit of the Scorecard program used to produce the
// scorecard.
ScorecardDetails scorecard = 3;
message Check {
// The name of the check.
string name = 1;
message Documentation {
// A short description of the check.
string short_description = 1;
// A link to more details about the check.
string url = 2;
}
// Human-readable documentation for the check.
Documentation documentation = 2;
// A score in the range [0,10]. A higher score is better.
// A negative score indicates that the check did not run successfully.
int32 score = 3;
// The reason for the score.
string reason = 4;
// Further details regarding the check.
repeated string details = 5;
}
// The results of the
// [Scorecard Checks](https://github.com/ossf/scorecard#scorecard-checks)
// performed on the project.
repeated Check checks = 4;
// A weighted average score in the range [0,10]. A higher score is better.
float overall_score = 5;
// Additional metadata associated with the scorecard.
repeated string metadata = 6;
}
// An [OpenSSF Scorecard](https://github.com/ossf/scorecard) for the project,
// if one is available.
Scorecard scorecard = 8;
message OSSFuzzDetails {
// The total number of lines of code in the project.
int32 line_count = 1;
// The number of lines of code covered by fuzzing.
int32 line_cover_count = 2;
// The date the fuzz test that produced the coverage information was run
// against this project.
// The time portion of this field is midnight UTC.
google.protobuf.Timestamp date = 3;
// The URL containing the configuration for the project in the
// OSS-Fuzz repository.
string config_url = 4;
}
// Details of this project's testing by the
// [OSS-Fuzz service](https://google.github.io/oss-fuzz/).
// Only set if the project is tested by OSS-Fuzz.
OSSFuzzDetails oss_fuzz = 9;
}
// ProjectRelationType specifies a relationship between a project and a package version.
enum ProjectRelationType {
UNKNOWN_PROJECT_RELATION_TYPE = 0;
// This project is this package version's source code repository.
SOURCE_REPO = 1;
// This project is the package version's issue tracker.
ISSUE_TRACKER = 2;
}
// How the mapping between project and package version was discovered.
enum ProjectRelationProvenance {
UNKNOWN_PROJECT_RELATION_PROVENANCE = 0;
// There is a SLSA attestation that links this package version to this project.
SLSA_ATTESTATION = 1;
// This project contains the package version (Go specific).
GO_ORIGIN = 2;
// There is a [PyPI Publish
// attestation](https://docs.pypi.org/attestations/publish/v1/) that links
// this package version to this project.
PYPI_PUBLISH_ATTESTATION = 3;
// The package version's metadata contains an unverified link to this project.
UNVERIFIED_METADATA = 10;
}
message GetProjectPackageVersionsRequest {
ProjectKey project_key = 1;
}
message ProjectPackageVersions {
message Version {
// The identifier for the version.
VersionKey version_key = 1;
// The SLSA provenance statements that link the version to the project. This
// is only populated for npm package versions. See the 'attestations' field
// for more attestations (including SLSA provenance) for all systems.
repeated SLSAProvenance slsa_provenances = 2;
// Attestations that link the version to the project.
repeated Attestation attestations = 5;
// What the relationship between the project and the package version is.
ProjectRelationType relation_type = 3;
// How the mapping between project and package version was discovered.
ProjectRelationProvenance relation_provenance = 4;
}
// The versions that were built from the source code contained in this
// project.
repeated Version versions = 1;
}
// GetAdvisoryRequest identifies a security advisory for which to return
// information.
message GetAdvisoryRequest {
AdvisoryKey advisory_key = 1;
}
// Advisory holds information about a security advisory hosted by OSV.
message Advisory {
// The identifier for the security advisory. Note that this may differ from
// the identifier in the request, due to canonicalization.
AdvisoryKey advisory_key = 1;
// The URL of the security advisory.
string url = 2;
// A brief human-readable description.
string title = 3;
// Other identifiers used for the advisory, including CVEs.
repeated string aliases = 4;
// The severity of the advisory as a CVSS v3 score in the range [0,10].
// A higher score represents greater severity.
float cvss3_score = 5;
// The severity of the advisory as a CVSS v3 vector string.
string cvss3_vector = 6;
}
// QueryRequest identifies package versions for which to return information.
// At least one of its fields must be set, and both fields may be set to narrow
// the results.
message QueryRequest {
// A content hash for an artifact associated with a package version, such as a
// JAR file. Currently supported for npm, Cargo, Maven, and NuGet. Note that
// hashes and package versions have a many-to-many relationship.
Hash hash = 1;
// The name of the package version.
VersionKey version_key = 2;
}
// QueryResult holds information about package versions matching the query.
message QueryResult {
message Result {
Version version = 1;
}
// Results matching the query. At most 1000 results are returned.
repeated Result results = 1;
}