| 300 | |
| 301 | |
| 302 | class RelatedIncidents(GenericRelationshipList): |
| 303 | _namespace = "http://docs.oasis-open.org/cti/ns/stix/incident-1" |
| 304 | _binding = incident_binding |
| 305 | _binding_class = incident_binding.RelatedIncidentsType |
| 306 | |
| 307 | incident = fields.TypedField( |
| 308 | name="Related_Incident", |
| 309 | type_=RelatedIncident, |
| 310 | multiple=True, |
| 311 | key_name="incidents" |
| 312 | ) |
| 313 | |
| 314 | |
| 315 | class IncidentCategories(stix.EntityList): |