Skip to content

Commit

Permalink
rename the schema file for malware-artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
rpiazza committed Dec 4, 2024
1 parent 7555fb6 commit 03ef48f
Showing 1 changed file with 32 additions and 0 deletions.
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"
]
}

0 comments on commit 03ef48f

Please sign in to comment.