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

Simplify environment variable object for more compact data representation; removes truncation indicator #9

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
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
10 changes: 0 additions & 10 deletions dictionary.json
Original file line number Diff line number Diff line change
Expand Up @@ -5152,16 +5152,6 @@
"type": "string_t",
"is_array": true
},
"variable_name": {
"caption": "Variable Name",
"description": "The name of a variable. See specific usage.",
"type": "long_string"
},
"variable_value": {
"caption": "Variable Value",
"description": "The value of a variable. See specific usage.",
"type": "long_string"
},
"vector_string": {
"caption": "Vector String",
"description": "The CVSS vector string is a text representation of a set of CVSS metrics. It is commonly used to record or transfer CVSS metric information in a concise form. For example: <code>3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:H</code>.",
Expand Down
9 changes: 5 additions & 4 deletions objects/environment_variable.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@
"extends": "object",
"name": "environment_variable",
"attributes": {
"variable_name": {
"description": "The name of the environment variable. Note that some operating systems permit environment variables to have very long names.",
"name": {
"description": "The name of the environment variable.",
"requirement": "required"
},
"variable_value": {
"description": "The value of the environment variable. Note that some operating systems permit environment variables to have very long values.",
"value": {
"description": "The value of the environment variable.",
"requirement": "required"

}
}
}