You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: schema/bom-1.7.proto
+23Lines changed: 23 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -2460,19 +2460,33 @@ message Patent {
2460
2460
2461
2461
// Indicates the current legal status of the patent or patent application, based on the WIPO ST.27 standard. This status reflects administrative, procedural, or legal events. Values include both active and inactive states and are useful for determining enforceability, procedural history, and maintenance status.
2462
2462
enumPatentLegalStatus {
2463
+
// Default
2463
2464
PATENT_LEGAL_STATUS_UNSPECIFIED=0;
2465
+
// The patent application has been filed but not yet examined or granted.
2464
2466
PATENT_LEGAL_STATUS_PENDING=1;
2467
+
// The patent application has been examined and a patent has been issued.
2465
2468
PATENT_LEGAL_STATUS_GRANTED=2;
2469
+
// The patent has been declared invalid through a legal or administrative process.
2466
2470
PATENT_LEGAL_STATUS_REVOKED=3;
2471
+
// The patent has reached the end of its enforceable term.
2467
2472
PATENT_LEGAL_STATUS_EXPIRED=4;
2473
+
// The patent is no longer in force due to non-payment of maintenance fees or other requirements.
2468
2474
PATENT_LEGAL_STATUS_LAPSED=5;
2475
+
// The patent application was voluntarily withdrawn by the applicant.
2469
2476
PATENT_LEGAL_STATUS_WITHDRAWN=6;
2477
+
// The patent application was abandoned, often due to lack of action or response.
2470
2478
PATENT_LEGAL_STATUS_ABANDONED=7;
2479
+
// Processing of the patent application has been temporarily halted.
2471
2480
PATENT_LEGAL_STATUS_SUSPENDED=8;
2481
+
// A previously abandoned or lapsed patent has been reinstated.
2472
2482
PATENT_LEGAL_STATUS_REINSTATED=9;
2483
+
// The patent application or granted patent is under formal opposition proceedings.
2473
2484
PATENT_LEGAL_STATUS_OPPOSED=10;
2485
+
// The patent or application has been officially terminated.
2474
2486
PATENT_LEGAL_STATUS_TERMINATED=11;
2487
+
// The patent has been invalidated, either in part or in full.
2475
2488
PATENT_LEGAL_STATUS_INVALIDATED=12;
2489
+
// The granted patent is active and enforceable.
2476
2490
PATENT_LEGAL_STATUS_IN_FORCE=13;
2477
2491
}
2478
2492
@@ -2517,13 +2531,22 @@ message Asserter {
2517
2531
2518
2532
// The type of assertion being made about the patent or patent family. Examples include ownership, licensing, and standards inclusion.
2519
2533
enumPatentAssertionType {
2534
+
// Default
2520
2535
PATENT_ASSERTION_TYPE_UNSPECIFIED=0;
2536
+
// The manufacturer asserts ownership of the patent or patent family.
2521
2537
PATENT_ASSERTION_TYPE_OWNERSHIP=1;
2538
+
// The manufacturer asserts they have a license to use the patent or patent family.
2522
2539
PATENT_ASSERTION_TYPE_LICENSE=2;
2540
+
// A third party has asserted a claim or potential infringement against the manufacturer’s component or service.
2523
2541
PATENT_ASSERTION_TYPE_THIRD_PARTY_CLAIM=3;
2542
+
// The patent is part of a standard essential patent (SEP) portfolio relevant to the component or service.
2524
2543
PATENT_ASSERTION_TYPE_STANDARDS_INCLUSION=4;
2544
+
// The manufacturer asserts the patent or patent family as prior art that invalidates another patent or claim.
2525
2545
PATENT_ASSERTION_TYPE_PRIOR_ART=5;
2546
+
// The manufacturer asserts exclusive rights granted through a licensing agreement.
2526
2547
PATENT_ASSERTION_TYPE_EXCLUSIVE_RIGHTS=6;
2548
+
// he manufacturer asserts they will not enforce the patent or patent family against certain uses or users.
2527
2549
PATENT_ASSERTION_TYPE_NON_ASSERTION=7;
2550
+
// The patent or patent family is being used under a research or evaluation license.
0 commit comments