Skip to content

Commit

Permalink
Merge pull request #44 from rpiazza/main
Browse files Browse the repository at this point in the history
Changes and Comments of the Incident Spec Doc
  • Loading branch information
rpiazza authored Nov 28, 2023
2 parents 45e013c + eb63504 commit 32c4b03
Show file tree
Hide file tree
Showing 4 changed files with 106 additions and 47 deletions.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
{
"contact_number": "123-456-7890",
"contact_number_type": "work-phone"
"classified": true
},
{
"contact_number": "123-456-7891",
Expand Down Expand Up @@ -71,4 +72,4 @@
"account_type": "fake service"
}
]
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@
"type": "string",
"description": "The contact number. Typically a phone number."
},
"classified": {
"type": "boolean",
"default": false
"description": "Can be used to reach the individual on a classified phone."
},
"contact_number_type": {
"type": "string",
"description": "The type of number this is used for. This SHOULD be drawn from contact-number-ov."
Expand All @@ -56,6 +61,11 @@
"$ref": "https://raw.githubusercontent.com/oasis-open/cti-stix2-json-schemas/stix2.1/schemas/common/identifier.json",
"pattern": "^email-addr--"
},
"classified": {
"type": "boolean",
"default": false
"description": "Can be used to reach the individual on a classified network."
},
"digital_contact_type": {
"type": "string",
"description": "The type of email that address is used for. This SHOULD be drawn from digital-contact-ov."
Expand All @@ -82,6 +92,11 @@
"$ref": "https://raw.githubusercontent.com/oasis-open/cti-stix2-json-schemas/stix2.1/schemas/common/identifier.json",
"pattern": "^user-account--"
},
"classified": {
"type": "boolean",
"default": false
"description": "Can be used to reach the individual on a classified network."
},
"digital_contact_type": {
"type": "string",
"description": "The type of social media account that relates to. This SHOULD be drawn from digital-contact-ov."
Expand Down Expand Up @@ -113,5 +128,25 @@
"type": "string",
"description": "A suffix for the individual such as “PhD”"
}
},
"definitions": {
"contact-number-ov": {
"type": "string",
"enum": [
"personal-landline-phone",
"personal-mobile-phone",
"personal-fax",
"work-phone",
"work-fax"
]
},
"digital-number-ov": {
"type": "string",
"enum": [
"organizational",
"personal",
"work"
]
}
}
}
}
Loading

0 comments on commit 32c4b03

Please sign in to comment.