sra-stix2-validator
Version:
43 lines • 1.6 kB
JSON
{
"$id": "../observables/ipv4-addr.json",
"$schema": "http://json-schema.org/draft-06/schema#",
"title": "ipv4-addr",
"description": "The IPv4 Address Object represents one or more IPv4 addresses expressed using CIDR notation.",
"type": "object",
"allOf": [
{
"$ref": "../common/cyber-observable-core.json"
},
{
"properties": {
"type": {
"type": "string",
"description": "The value of this property MUST be `ipv4-addr`.",
"const": "ipv4-addr"
},
"value": {
"type": "string",
"description": "Specifies one or more IPv4 addresses expressed using CIDR notation."
},
"resolves_to_refs": {
"type": "array",
"description": "Specifies a list of references to one or more Layer 2 Media Access Control (MAC) addresses that the IPv4 address resolves to.",
"items": {
"type": "string"
},
"minItems": 1
},
"belongs_to_refs": {
"type": "array",
"description": "Specifies a reference to one or more autonomous systems (AS) that the IPv4 address belongs to.",
"items": {
"type": "string"
}
}
},
"required": [
"value"
]
}
]
}