Skip to content

Commit ccd2c1c

Browse files
authored
added entity count
1 parent 5254e7f commit ccd2c1c

File tree

1 file changed

+27
-20
lines changed

1 file changed

+27
-20
lines changed

extension-definition-specifications/incident-ef7/Incident Extension Suite.adoc

Lines changed: 27 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -601,7 +601,7 @@ This value *MUST* come from [stixtype]#<<timestamp-fidelity-enum,timestamp-fidel
601601
If no value is provided the timestamp should be considered to be accurate up to the number of decimal digits it includes.
602602

603603
|*impacted_entity_counts* (optional)
604-
|[stixtype]#<<entity-count,entity-count>>#
604+
|[stixtype]#{list_url}[list]# of type [stixtype]#<<entity-count,entity-count>>#
605605
|A list of the entity types, along with the number of each type impacted.
606606

607607
If this property is not present it should be assumed that this information is not being shared, not that there were no impacted entities.
@@ -1077,7 +1077,7 @@ If no value is provided the timestamp should be considered to be accurate up to
10771077
|Details about any failures or deviations that occurred in the task.
10781078

10791079
|*affected_entity_counts* (optional)
1080-
|[stixtype]#<<entity-count,entity-count>>#
1080+
|[stixtype]#{list_url}[list]# of type [stixtype]#<<entity-count,entity-count>>#
10811081
|A list of affected entity types, along with the number of each type affected.
10821082

10831083
This property is used primarily to capture victim notification information.
@@ -1247,36 +1247,43 @@ include::examples/example_2.4.json[]
12471247
*Type Name:* [stixtype]#entity-count#
12481248

12491249
The Entity Count type represents the count of one or more entity types.
1250-
The name of each entity type *MUST* be specified as a key in the dictionary and *MUST* identify the count of the entity that corresponds to the value.
1251-
Each key *SHOULD* come from [stixtype]#<<entity-type-ov,entity-type-ov>># open vocabulary.
1252-
This value *MUST* be an [stixtype]#{int_url}[integer]# that is equal to or greater than zero.
12531250

1254-
*Examples:*
1251+
[width="100%",cols="37%,23%,40%",options="header",]
1252+
|===
1253+
^|[stixtr]*Property Name*
1254+
^|[stixtr]*Type*
1255+
^|[stixtr]*Description*
12551256

1256-
_100 individuals, 70 employees, 30 customers_
1257-
[source,json]
1258-
----
1259-
{
1260-
"individual": 100,
1261-
"employee": 70,
1262-
"customer-individual": 30
1263-
}
1264-
----
1257+
|*entity_type* (required)
1258+
|[stixtype]#{open_vocab_url}[open-vocab]#
1259+
|The value of the entity type *SHOULD* come from [stixtype]#<<entity-type-ov,entity-type-ov>># open vocabulary.
1260+
1261+
|*count* (required)
1262+
|[stixtype]#{number_url}[number]#
1263+
|The number of instances of the entity type.
1264+
1265+
|*precise_within* (optional)
1266+
|[stixtype]#{number_url}[number]#
1267+
|The order of magnitude of the approximate count. If this property is not provided, the count should be considered the accurate count.
1268+
|===
1269+
*Examples:*
12651270

1266-
_1000 systems, 10 organizations_
1271+
_100 individuals - an accurate count_
12671272
[source,json]
12681273
----
12691274
{
1270-
"organization": 10,
1271-
"system": 1000
1275+
"entity_type": "individual":
1276+
"count": 100,
12721277
}
12731278
----
12741279

1275-
_0 individuals_
1280+
_70000 employees - within 1000 in either direction_
12761281
[source,json]
12771282
----
12781283
{
1279-
"individual": 0
1284+
"entity_type": "employee":
1285+
"count": 70000,
1286+
"precise_within": 1000
12801287
}
12811288
----
12821289

0 commit comments

Comments
 (0)