Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding versions to native extensions, updating extensions registry #881

Merged
merged 2 commits into from
Dec 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions extensions.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,7 @@ The purpose of this file is to keep track of and avoid collisions in Extension `
| Splunk | splunk | **997** | The Splunk schema extension |
| AWS | aws | **998** | The Amazon Web Services schema extension |
| Development | dev | **999** | The development (TODO) schema extensions |
| _Native Extensions defined in OCSF_ |
| Linux | linux | **1** | The Linux extension defines Linux specific attributes, objects and classes |
| Windows | win | **2** | The Windows extension defines Windows specific attributes, objects and classes |
| macOS | macos | **3** | The macOS extension defines macOS specific attributes, objects and classes |
5 changes: 3 additions & 2 deletions extensions/linux/extension.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"caption": "Linux",
"description": "The Linux extension defines Linux specific attributes.",
"description": "The Linux extension defines Linux specific attributes, objects and classes.",
"name": "linux",
"uid": 1
"uid": 1,
"version": "1.1.0-dev"
}
3 changes: 2 additions & 1 deletion extensions/macos/extension.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
"caption": "macOS",
"description": "The macOS extension defines macOS specific attributes, objects and classes.",
"name": "macos",
"uid": 3
"uid": 3,
"version": "1.1.0-dev"
}
5 changes: 3 additions & 2 deletions extensions/windows/extension.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"caption": "Windows",
"description": "The Windows extension defines Windows specific attributes.",
"description": "The Windows extension defines Windows specific attributes, objects and classes.",
"name": "win",
"uid": 2
"uid": 2,
"version": "1.1.0-dev"
}
Loading