data-cap
    Preparing search index...

    Interface OwnershipMatrixEntry

    One owner's row in the ownership matrix -- every capability and field they're accountable for.

    interface OwnershipMatrixEntry {
        capabilities: readonly OwnershipCapabilityRef[];
        fields: readonly OwnershipFieldRef[];
        owner: string;
    }
    Index
    capabilities: readonly OwnershipCapabilityRef[]

    Capabilities this owner is accountable for at the capability level.

    fields: readonly OwnershipFieldRef[]

    Individual fields (on capabilities not wholly owned by this owner) they're accountable for.

    owner: string

    The owner's name, or UNOWNED.