The checkpoint.permission object represents a permission for a fine-tuned model checkpoint.

interface PermissionCreateResponse {
    created_at: number;
    id: string;
    object: "checkpoint.permission";
    project_id: string;
}

Properties

created_at: number

The Unix timestamp (in seconds) for when the permission was created.

id: string

The permission identifier, which can be referenced in the API endpoints.

object: "checkpoint.permission"

The object type, which is always "checkpoint.permission".

project_id: string

The project identifier that the permission is for.