sra-stix2-validator
Version:
28 lines • 812 B
JSON
{
"$id": "../observables/mutex.json",
"$schema": "http://json-schema.org/draft-06/schema#",
"title": "mutex",
"description": "The Mutex Object represents the properties of a mutual exclusion (mutex) object.",
"type": "object",
"allOf": [
{
"$ref": "../common/cyber-observable-core.json"
},
{
"properties": {
"type": {
"type": "string",
"description": "The value of this property MUST be `mutex`.",
"const": "mutex"
},
"name": {
"type": "string",
"description": "Specifies the name of the mutex object."
}
}
}
],
"required": [
"name"
]
}