NDEx JavaScript Client API Reference - v0.6.0-alpha.5
    Preparing search index...

    Interface FilePermissionDetails

    Permission details for a file including its type and member permissions

    This interface represents the permission information for a single file, including what type of file it is and which users have what permissions on it.

    interface FilePermissionDetails {
        type: NDExFileType;
        members: Record<string, Permission>;
    }
    Index

    Properties

    Properties

    The type of the file (NETWORK, FOLDER, or SHORTCUT)

    members: Record<string, Permission>

    Map of user UUIDs to their permission levels on this file

    Each key represents a user's UUID, and the corresponding value indicates what permission level that user has on the file.

    {
    "user1-uuid-1234-5678-9abc-def012345678": "READ",
    "user2-uuid-8765-4321-fedc-ba0987654321": "WRITE",
    "user3-uuid-1111-2222-3333-444444444444": "ADMIN"
    }