Project

Base definition

{
    "kind": "project",
    "id": string,
    "qualifiedReference": string,
    "scopedReference": string,
    "referenceId": string,
    "name": string,
    "url": string,
    "uri": string,
    "owner": {
        ...user.base // See user resource definition
    }
}

List definition

In addition to the base definition, any project resource returned by a list request will contain the following properties:

{
    "createdAt": integer, 
    "publicAccessLevel": string("none"|"view"),
    "studyAccessLevel": string("none"|"view") | null,
    "accessLevel": string("view"|"edit"),
    "study": {
        "kind": "study",
        "name": string
    } | null
}

Get definition

In addition to the base and list definition, any project resource returned by a get request will contain the following properties:

{
    "lastActive": integer,
    "tableCount": integer,
    "transformCount": integer,
    "notebookCount": integer,
    "description": string,
}

Documentation

Last updated