AutoBE
    Preparing search index...

    Business role, title, or position within an actor category.

    interface IActorRole {
        description: string;
        inherits: (string & CamelCasePattern)[];
        name: string & CamelCasePattern & MinLength<1>;
        title: string & MinLength<1>;
    }
    Index

    Properties

    description: string

    Business meaning and typical responsibility of this role.

    inherits: (string & CamelCasePattern)[]

    Names of lower or narrower roles whose permissions are included by this role.

    Example: an owner role may include manager, and a manager role may include staff. Use an empty array when the role does not inherit another role.

    name: string & CamelCasePattern & MinLength<1>

    Stable camelCase role identifier.

    Examples: owner, manager, staff, customerSupport, contentModerator.

    title: string & MinLength<1>

    Human-readable role title.

    This may be a job title, permission role, organizational position, or product-specific persona label.