Skip to content

Latest commit

 

History

History
27 lines (23 loc) · 2.2 KB

Project.md

File metadata and controls

27 lines (23 loc) · 2.2 KB

Project

A Project is a collection of zero or more Documents. It is specific to a language pair, and is associated with exactly one Memory for that language pair. The Memory association cannot be changed after the Project is created.

Properties

Name Type Description Notes
id int A unique number identifying the Project. [optional]
memory_id int A unique number identifying the associated Memory. [optional]
job_id int A unique number identifying the associated Job. [optional]
srclang str An ISO 639-1 language identifier. [optional]
trglang str An ISO 639-1 language identifier. [optional]
srclocale str A locale identifier, supported for srclang. [optional]
trglocale str A locale identifier, supported for trglang. [optional]
name str A name for the project. [optional]
state str The project's state. The possible states are `backlog`, `inProgress`, `inReview`, `inQA`, and `done`. [optional]
due_date int The due date. Measured in seconds since the Unix epoch. [optional]
archived bool The archived state of the Project. [optional]
metadata object A JSON object of key/value string pairs. Stores custom project information. [optional]
sample_review_percentage int The project's sample review percentage. [optional]
created_at int Time at which the object was created. Measured in seconds since the Unix epoch. [optional]
updated_at int Time at which the object was created. Measured in seconds since the Unix epoch. [optional]
workflow_status str The status of the Workflow for the current project. This may not be present for all project endpoints even with workflows enabled. [optional]
document list[DocumentWithoutSegments] A list of Documents. [optional]

[Back to Model list] [Back to API list] [Back to README]