| 261 | |
| 262 | |
| 263 | class RelatedIndicators(GenericRelationshipList): |
| 264 | _namespace = "http://docs.oasis-open.org/cti/ns/stix/incident-1" |
| 265 | _binding = incident_binding |
| 266 | _binding_class = incident_binding.RelatedIndicatorsType |
| 267 | |
| 268 | indicator = fields.TypedField( |
| 269 | name="Related_Indicator", |
| 270 | type_=RelatedIndicator, |
| 271 | multiple=True, |
| 272 | key_name="indicators" |
| 273 | ) |
| 274 | |
| 275 | |
| 276 | class RelatedObservables(GenericRelationshipList): |