Skip to content

Commit

Permalink
undo proto change
Browse files Browse the repository at this point in the history
  • Loading branch information
sahibamittal committed Dec 31, 2024
1 parent 921fc60 commit e663f8b
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
28 changes: 14 additions & 14 deletions docs/reference/schemas/policy.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,21 +88,21 @@



| Field | Type | Description |
|:------------------| :--- | :---------- |
| `uuid` | `string` | | - |
| `group` | `string` | | - |
| `name` | `string` | | - |
| `version` | `string` | | - |
| `classifier` | `string` | | - |
| `inactive_since` | `google.protobuf.Timestamp` | | - |
| `tags` | `string[]` | | - |
| `properties` | [`Project.Property[]`](#org-dependencytrack-policy-v1-Project-Property) | | - |
| `cpe` | `string` | | - |
| `purl` | `string` | | - |
| `swid_tag_id` | `string` | | - |
| Field | Type | Description |
| :---- | :--- | :---------- |
| `uuid` | `string` | | - |
| `group` | `string` | | - |
| `name` | `string` | | - |
| `version` | `string` | | - |
| `classifier` | `string` | | - |
| `is_active` | `bool` | | - |
| `tags` | `string[]` | | - |
| `properties` | [`Project.Property[]`](#org-dependencytrack-policy-v1-Project-Property) | | - |
| `cpe` | `string` | | - |
| `purl` | `string` | | - |
| `swid_tag_id` | `string` | | - |
| `last_bom_import` | `google.protobuf.Timestamp` | | - |
| `metadata` | [`Project.Metadata`](#org-dependencytrack-policy-v1-Project-Metadata) | | - |
| `metadata` | [`Project.Metadata`](#org-dependencytrack-policy-v1-Project-Metadata) | | - |



Expand Down
2 changes: 1 addition & 1 deletion docs/usage/policy-compliance/expressions.md
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ or `CRITICAL`
| `name` | `string` | Name |
| `version` | `string` | Version |
| `classifier` | `string` | Classifier / type |
| `inactive_since` | `google.protobuf.Timestamp` | Inactive Since |
| `is_active` | `bool` | Is active? |
| `tags` | `list(string)` | Tags |
| `properties` | <code>list([Project.Property])</code> | Properties |
| `cpe` | `string` | [CPE] |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ message Project {
string name = 3;
optional string version = 4;
optional string classifier = 5;
optional google.protobuf.Timestamp inactive_since = 6;
bool is_active = 6;
repeated string tags = 7;
repeated Property properties = 8;
optional string cpe = 9;
Expand Down

0 comments on commit e663f8b

Please sign in to comment.