Skip to content

STIX 2.0 Proposal15 : Remove abstract base types for "top level" objects (#386)

sbarnum edited this page Feb 8, 2016 · 3 revisions

Consensus has been achieved on this issue. The relevant issues trackers have been marked as such. Any future treatment of this issue will occur within the pre-draft, draft and final specifications.

Issue Summary

STIX 1.2.1 contains a set of abstract base types for each "top-level" construct except Observable (which leverages CybOX directly). Each of the "top-level" objects derive from these abstract base types and the abstract base types are leveraged wherever relationships to the "top-level" object concepts are needed.

These abstract base types were included in STIX for 3 reasons:

  1. to support the potential desire of some user to leverage a completely different implementation for one of the "top-level" concepts rather than the STIX default implementation (e.g. IODEF instead of STIX Incident).
  2. to support the potential desire of some user to leverage a specialized derivation of one of the default STIX implementations of the "top-level" concepts (e.g. the secret squirrel community wishing to leverage a Threat Actor++ implementation with some domain specific properties unique to them).
  3. to enable loose coupling of the various "top-level" default implementations in the very explicit domain of XSD Schema serialization

Proposed

It is proposed that each of the abstract base types for the "top-level" objects be removed from the model and each "top-level" object type stand on its own.

This rationale is supported by the following:

  • reason #1 above has never proven out to be likely and would be serious ill-advised anyway
  • reason #2 above could still be accomplished without the abstract base types by extending the concrete "top-level" objects themselves
  • this sort of serialization-specific limitation could and likely should be conveyed as part of a serialization binding spec rather than an integral part of the implementation independent language model

Proposed Model

The orange classes in the below model diagram are the "top level" objects and as you can see they would now extend directly from IDableConstructType or via a contextual intermediary like IdentityType or AssertionType.

Examples

This change would make no difference at the serialization level other than it may require some special serialization binding rules for explicit serializations such as XML Schema to enable loose coupling.

JSON Serialization example snippets

N/A

JSON Schema Serialization snippets

N/A

Open Questions

Clone this wiki locally