Hi Community,
In the RFC identity is defined as abstract, and untyped (among global and unique). Furthermore, identities can be derived in order to create new identities or types (typedef).
My question is whether it is possible to define type for a derived identity, meaning to give my derived identity a type such as string/boolean/integer/etc?
Something like this (or using typedef in some way):
identity equipment-detected {
base al:alarm-type-id;
type string;
}
Doron