@dasch-swiss/dsp-js
Version:
JavaScript library that handles API requests to Knora
41 lines (40 loc) • 901 B
TypeScript
import { StringLiteral } from "./string-literal";
/**
* Represents a project that uses Knora.
*
* @category Model Admin
*/
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;
}