UNPKG

@knora/api

Version:

JavaScript library that handles API requests to Knora

39 lines (38 loc) 873 B
import { StringLiteral } from "./string-literal"; /** * Represents a project that uses Knora. */ export declare class Project { /** * Project keywords. */ keywords: string[]; /** * The path to the projects's logo. */ logo?: string; /** * The longname of a Knora project. */ longname?: string; /** * A description of a project. */ description: StringLiteral[]; /** * Exists and is true if users can add themselves to the project or group. */ selfjoin: boolean; /** * The unique short code of a Knora project. */ shortcode: string; /** * The unique shortname of a Knora project. */ shortname: string; /** * The status of the user / group / project. It is false if the entity has been deactivated (deleted). */ status: boolean; }