A hybrid word is one that is multiple word types.
Several nodes within a class thread may be combined. Frequently wordType and jsonSchema word types are combined. See these examples.
Or in cases where one concept, like dog, is a subset of another concept, like animal, as in the following example:
{
"wordData": {
"wordTypes": ["animal", "dog"]
},
"animalData": {
...
},
"dogData": {
...
}
}
The convention in this case is to order the top-level properties from generic to specific, e.g. to place animalData
before dogData
..