You can define multiple classes in the Data Model. You can also alter this by custom
analysis code.
Classes can be independent, or hierarchized. In a hierarchy, a class inherits all of its
parent’s properties.
For example:
class A
foo
bar
class B: parentClass=A
gizmo
This means you can search for B_gizmo
, B_foo
,
B_bar
, A_foo
, or A_bar
.
You can specify which class in the Data Model is the default class. When searching for
properties from this class, you do not need to prefix the search by the class name. For
example, if B
was the default class, searching for gizmo
returns the same result as searching for B_gizmo
.