@@ -601,7 +601,7 @@ This value *MUST* come from [stixtype]#<<timestamp-fidelity-enum,timestamp-fidel
601
601
If no value is provided the timestamp should be considered to be accurate up to the number of decimal digits it includes.
602
602
603
603
|*impacted_entity_counts* (optional)
604
- |[stixtype]#<<entity-count,entity-count>>#
604
+ |[stixtype]#{list_url}[list]# of type [stixtype]# <<entity-count,entity-count>>#
605
605
|A list of the entity types, along with the number of each type impacted.
606
606
607
607
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
1077
1077
|Details about any failures or deviations that occurred in the task.
1078
1078
1079
1079
|*affected_entity_counts* (optional)
1080
- |[stixtype]#<<entity-count,entity-count>>#
1080
+ |[stixtype]#{list_url}[list]# of type [stixtype]# <<entity-count,entity-count>>#
1081
1081
|A list of affected entity types, along with the number of each type affected.
1082
1082
1083
1083
This property is used primarily to capture victim notification information.
@@ -1247,36 +1247,43 @@ include::examples/example_2.4.json[]
1247
1247
*Type Name:* [stixtype]#entity-count#
1248
1248
1249
1249
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.
1253
1250
1254
- *Examples:*
1251
+ [width="100%",cols="37%,23%,40%",options="header",]
1252
+ |===
1253
+ ^|[stixtr]*Property Name*
1254
+ ^|[stixtr]*Type*
1255
+ ^|[stixtr]*Description*
1255
1256
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:*
1265
1270
1266
- _1000 systems, 10 organizations_
1271
+ _100 individuals - an accurate count_
1267
1272
[source,json]
1268
1273
----
1269
1274
{
1270
- "organization ": 10,
1271
- "system ": 1000
1275
+ "entity_type ": "individual":
1276
+ "count ": 100,
1272
1277
}
1273
1278
----
1274
1279
1275
- _0 individuals_
1280
+ _70000 employees - within 1000 in either direction_
1276
1281
[source,json]
1277
1282
----
1278
1283
{
1279
- "individual": 0
1284
+ "entity_type": "employee":
1285
+ "count": 70000,
1286
+ "precise_within": 1000
1280
1287
}
1281
1288
----
1282
1289
0 commit comments