data-cap
    Preparing search index...

    Interface LifecycleModelCapability

    One capability's declared lifecycle data, plus every lifecycle-bearing field under it.

    interface LifecycleModelCapability {
        deprecated: boolean | undefined;
        deprecatedReason: string | undefined;
        expiresAt: string | undefined;
        exportName: string;
        fields: readonly LifecycleModelField[];
        file: string;
        retention: string | undefined;
    }
    Index
    deprecated: boolean | undefined

    Whether the capability is documented as deprecated.

    deprecatedReason: string | undefined

    Why it's deprecated, when stated.

    expiresAt: string | undefined

    Declared ISO-8601 expiry for the capability as a whole.

    exportName: string

    The binding name the capability is exported as.

    fields: readonly LifecycleModelField[]

    Only fields with at least one lifecycle field set, sorted by path -- same "only what's relevant" scope the rendered report uses.

    file: string

    Root-relative POSIX path -- carried through verbatim from CapabilityNode.file.

    retention: string | undefined

    Declared retention policy at the capability level.