-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rename the schema file for malware-artifacts
- Loading branch information
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
32 changes: 32 additions & 0 deletions
32
...ecifications/artifact-805/extension-definition--8053ffa0-dec7-4aef-870e-a56d0082cf69.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"$id": "https://raw.githubusercontent.com/oasis-open/cti-stix-common-objects/main/extension-definition-specifications/artifact-805/extension-definition--8053ffa0-dec7-4aef-870e-a56d0082cf69.json", | ||
"title": "malware-sample-artifact-extension", | ||
"description": "An extension of the Artifact object to allow capture of malware samples.", | ||
"type": "object", | ||
"properties": { | ||
"extensions": { | ||
"type": "object", | ||
"properties": { | ||
"extension-definition--8053ffa0-dec7-4aef-870e-a56d0082cf69": { | ||
"type": "object", | ||
"properties": {"extension_type": { | ||
"type": "string", | ||
"description": "Defined by STIX 2.1 extension definition rules from 'extension-type-enum'.", | ||
"enum": ["toplevel-property-extension"] | ||
}}, | ||
"required": ["extension_type"] | ||
}, | ||
"required": ["extension-definition--8053ffa0-dec7-4aef-870e-a56d0082cf69"] | ||
} | ||
}, | ||
"is_safe": { | ||
"type": "boolean", | ||
"description": "Indicates whether the artifact is safe, i.e., can be opened or processed without risking harm or infection. The default value is false." | ||
} | ||
}, | ||
"required": [ | ||
"extensions", | ||
"is_safe" | ||
] | ||
} |