---
title: "List Project's Tasks"
method: GET
path: "/projects/{projectId}/tasks"
tags: ["Project"]
---

# List Project's Tasks

`GET /projects/{projectId}/tasks`

Lists the tasks of a specific project.

## Query parameters

- `top` integer
- `skip` integer
- `location` string[]
- `locationStrategy` 'location' | 'lineage' | 'bloodline' | 'genealogy'
- `sort` string
- `fields` string

## Headers

- `Authorization` string, required
- `X-LC-Tenant` string, required

## Response `200`

- ListTasksResponse — A response for the List Tasks endpoint.
  - `itemCount` integer, required
  - `items` Task[], required
    - `id` string, required
    - `status` 'created' | 'inProgress' | 'completed' | 'failed' | 'skipped' | 'canceled', nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The task status.</div>
    - `taskType` TaskType — Task type.
      - `id` string, required
      - `key` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Identifier key for the task.</div>
      - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;"></div>
      - `apiInternalId` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;"> Unique identifier of custom task types set in the workflow. If no custom id is set, it will return the default identifier for the custom task type.
      - `description` string
      - `automatic` boolean, nullable — This indicates whether the task is automatic or human.
      - `scope` 'file' | 'targetLanguage' | 'batch' | 'vendorOrder' | 'task', nullable — The resource type scope for the task.
      - `outcomes` TaskTypeOutcome[]
        - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;"></div>
        - `description` string
        - `default` boolean, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;"></div>
      - `configurationDefinitions` TaskTypeConfigurationDefinition[] — Defines the configurable options available for this task type. Each entry describes one configuration option including its data type, default value, allowed values and constraints.
        - `id` string, required — The identifier for the configuration option (e.g. `FORCE_CLOSE_MAX_AGE`).
        - `name` string, required — Human-readable name for the configuration option.
        - `description` string — Explanation of what this configuration option controls.
        - `dataType` 'integer' | 'boolean' | 'string', required — The data type of the configuration value.
        - `optional` boolean, required — Whether this configuration option is optional. If `false`, a value must always be supplied.
        - `defaultValue` object, nullable — The default value applied when no value is explicitly set. The type matches `dataType`. May be `null` when no default is defined.
        - `options` string[], nullable — Enumerated list of accepted string values. Present only when `dataType` is `string` and the value is restricted to a fixed set. `null` when any value is allowed.
        - `constraints` TaskTypeConfigurationConstraint[] — Validation constraints applied to the value (e.g. minimum/maximum for numeric types).
          - `type` 'minValue' | 'maxValue', required — The kind of constraint.
          - `value` object, required — The constraint threshold. Type matches the parent configuration option's `dataType`.
      - `location` FolderV2 — Folder used for resource storage.
        - `id` string, required — The folder identifier.
        - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The name of the folder.</div>
        - `hasParent` boolean, nullable — Indicates if the folder has a parent folder.
        - `path` FolderPath[] — The hierarchical path. It consists of all the items of the path in reverse order, the parent of the current folder being the first in the list, and the root of the account being the last.
          - `id` string, required — The folder identifier.
          - `name` string, required — The name of the folder.
          - `location` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div>The location identifier.
          - `hasParent` boolean, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div>Indicates if the folder has a parent folder.
    - `input` TaskInput — Task input. Based on the "type", the following fields can be retrieved: "project", "sourceFile", "targetFile".
      - `type` 'project' | 'sourceFile' | 'targetFile' | 'languageDirection', required — The input type.
      - `project` Project — Project resource.
        - `id` string, required — The project identifier.
        - `shortId` string — The short identifier of the project.
        - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The project name.</div>
        - `description` string — The project description.
        - `dueBy` string, date-time, nullable — The project due date. <br> UTC Timezone <br> Allowed formats: <br> "YYYY-MM-DDThh:mmZ" <br> "YYYY-MM-DDThh:mm:ssZ" <br> "YYYY-MM-DDThh:mm:ss.sZ" <br> "YYYY-MM-DDThh:mm:ss.ssZ" <br> "YYYY-MM-DDThh:mm:ss.sssZ"
        - `deliveredBy` string, date-time, nullable — UTC Timezone <br> Allowed formats: <br> "YYYY-MM-DDThh:mmZ" <br> "YYYY-MM-DDThh:mm:ssZ" <br> "YYYY-MM-DDThh:mm:ss.sZ" <br> "YYYY-MM-DDThh:mm:ss.ssZ" <br> "YYYY-MM-DDThh:mm:ss.sssZ"
        - `createdAt` string, date-time, nullable — The project's creation date and time. <br> UTC Timezone <br> Allowed formats: <br> "YYYY-MM-DDThh:mmZ" <br> "YYYY-MM-DDThh:mm:ssZ" <br> "YYYY-MM-DDThh:mm:ss.sZ" <br> "YYYY-MM-DDThh:mm:ss.ssZ" <br> "YYYY-MM-DDThh:mm:ss.sssZ"
        - `status` 'created' | 'inProgress' | 'completed' | 'archived', nullable — The project's status.
        - `statusHistory` ProjectStatusHistory[], nullable — The project's status history.
          - `from` 'none' | 'created' | 'inProgress' | 'completed', required — Specifies the project status previous to the change.
          - `to` 'created' | 'inProgress' | 'completed', required — Specifies the project status post change.
          - `by` User — User in the account.
            - `id` string, required — User account identifier.
            - `description` string — Description of this account user. For Service account users only.
            - `email` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's email address. Retrieved only for RWS ID (formerly SDL ID) users (not service users) that the authenticated entity is authorized to read.</div>
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's name. Retrieved only for Service users (not RWS ID users) that the authenticated entity is authorized to read.</div>
            - `firstName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's first name. Retrieved only for RWS ID (formerly SDL ID) users (not service users) that the authenticated entity is authorized to read.</div>
            - `lastName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's last name. Retrieved only for RWS ID (formerly SDL ID) users (not service users) that the authenticated entity is authorized to read.</div>
            - `anonymized` boolean, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">This shows if the authenticated entity has access to read the details of the user or not. If true, then the 'anonymizedUserName' should be retrieved.</div>
            - `anonymizedUserName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Retrieved if the authenticated entity does not have access to read the User.</div>
            - `account` Account
              - …
            - `location` FolderV2 — Folder used for resource storage.
              - …
            - `groups` Group[]
              - …
            - `userType` 'user' | 'serviceUser' — The type of the account user.
            - `status` 'inactive' | 'active' | 'deleted' | 'provisioned' — Status of this account user.
            - `invitationLink` string — The user's invitation link. Retrieved only for RWS ID (formerly SDL ID) users—not service users. It is available only if the user has not yet accepted the invitation (status is `inactive`).
            - `membership` 'member' | 'collaborator' — Type of membership of this account user.
            - `metadata` unknown
          - `timestamp` string, date-time, nullable — UTC Timezone <br> Allowed formats: <br> "YYYY-MM-DDThh:mmZ" <br> "YYYY-MM-DDThh:mm:ssZ" <br> "YYYY-MM-DDThh:mm:ss.sZ" <br> "YYYY-MM-DDThh:mm:ss.ssZ" <br> "YYYY-MM-DDThh:mm:ss.sssZ"
        - `languageDirections` LanguageDirection[] — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The project's language directions.</div>
          - `id` string, required — The language direction identifier.
          - `sourceLanguage` Language, required — The language object.
            - `languageCode` string, required — Language code. ex: "en-US", "de-DE".
            - `englishName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Human readable name.</div>
            - `direction` string
            - `parentLanguageCode` string
            - `defaultSpecificLanguageCode` string
            - `isNeutral` boolean, nullable
          - `targetLanguage` Language, required — The language object.
            - `languageCode` string, required — Language code. ex: "en-US", "de-DE".
            - `englishName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Human readable name.</div>
            - `direction` string
            - `parentLanguageCode` string
            - `defaultSpecificLanguageCode` string
            - `isNeutral` boolean, nullable
          - `analysisStatistics` AnalysisStatistics
            - `exactMatch` Count — Statistics count.
              - …
            - `inContextExactMatch` Count — Statistics count.
              - …
            - `perfectMatch` Count — Statistics count.
              - …
            - `new` Count — Statistics count.
              - …
            - `repetitions` Count — Statistics count.
              - …
            - `crossDocumentRepetitions` Count — Statistics count.
              - …
            - `machineTranslation` Count — Statistics count.
              - …
            - `locked` Count — Statistics count.
              - …
            - `fuzzyMatch` FuzzyCount[] — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Statistics count.</div>
              - …
            - `total` Count — Statistics count.
              - …
        - `customer` Customer — Customer resource.
          - `id` string, required — Customer identifier.
          - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Customer name.</div>
          - `keyContact` User — User in the account.
            - `id` string, required — User account identifier.
            - `description` string — Description of this account user. For Service account users only.
            - `email` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's email address. Retrieved only for RWS ID (formerly SDL ID) users (not service users) that the authenticated entity is authorized to read.</div>
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's name. Retrieved only for Service users (not RWS ID users) that the authenticated entity is authorized to read.</div>
            - `firstName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's first name. Retrieved only for RWS ID (formerly SDL ID) users (not service users) that the authenticated entity is authorized to read.</div>
            - `lastName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's last name. Retrieved only for RWS ID (formerly SDL ID) users (not service users) that the authenticated entity is authorized to read.</div>
            - `anonymized` boolean, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">This shows if the authenticated entity has access to read the details of the user or not. If true, then the 'anonymizedUserName' should be retrieved.</div>
            - `anonymizedUserName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Retrieved if the authenticated entity does not have access to read the User.</div>
            - `account` Account
              - …
            - `location` FolderV2 — Folder used for resource storage.
              - …
            - `groups` Group[]
              - …
            - `userType` 'user' | 'serviceUser' — The type of the account user.
            - `status` 'inactive' | 'active' | 'deleted' | 'provisioned' — Status of this account user.
            - `invitationLink` string — The user's invitation link. Retrieved only for RWS ID (formerly SDL ID) users—not service users. It is available only if the user has not yet accepted the invitation (status is `inactive`).
            - `membership` 'member' | 'collaborator' — Type of membership of this account user.
            - `metadata` unknown
          - `location` FolderV2 — Folder used for resource storage.
            - `id` string, required — The folder identifier.
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The name of the folder.</div>
            - `hasParent` boolean, nullable — Indicates if the folder has a parent folder.
            - `path` FolderPath[] — The hierarchical path. It consists of all the items of the path in reverse order, the parent of the current folder being the first in the list, and the root of the account being the last.
              - …
          - `ragStatus` 'green' | 'amber' | 'red'
          - `customFieldDefinitions` CustomFieldResource[] — The custom field definitions.
            - `key` string, required — Custom Field friendly key.
            - `value` object, required — The value of the custom property. A date will be serialized as an ISO_8601 string.
        - `createdBy` User — User in the account.
          - `id` string, required — User account identifier.
          - `description` string — Description of this account user. For Service account users only.
          - `email` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's email address. Retrieved only for RWS ID (formerly SDL ID) users (not service users) that the authenticated entity is authorized to read.</div>
          - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's name. Retrieved only for Service users (not RWS ID users) that the authenticated entity is authorized to read.</div>
          - `firstName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's first name. Retrieved only for RWS ID (formerly SDL ID) users (not service users) that the authenticated entity is authorized to read.</div>
          - `lastName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's last name. Retrieved only for RWS ID (formerly SDL ID) users (not service users) that the authenticated entity is authorized to read.</div>
          - `anonymized` boolean, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">This shows if the authenticated entity has access to read the details of the user or not. If true, then the 'anonymizedUserName' should be retrieved.</div>
          - `anonymizedUserName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Retrieved if the authenticated entity does not have access to read the User.</div>
          - `account` Account
            - `id` string, required — The account identifier.
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The account name.</div>
          - `location` FolderV2 — Folder used for resource storage.
            - `id` string, required — The folder identifier.
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The name of the folder.</div>
            - `hasParent` boolean, nullable — Indicates if the folder has a parent folder.
            - `path` FolderPath[] — The hierarchical path. It consists of all the items of the path in reverse order, the parent of the current folder being the first in the list, and the root of the account being the last.
              - …
          - `groups` Group[]
            - `id` string, required — The group identifier.
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The group name.</div>
            - `description` string — The group description.
            - `location` FolderV2 — Folder used for resource storage.
              - …
            - `users` User[]
            - `roles` Role[] — **Note**: The identifier of `Administrator` role will not be exposed publicly and a `********` placeholder will be returned on this endpoint for the role.
              - …
            - `additionalRoles` GroupAdditionalRoles[]
              - …
            - `groupType` 'default' | 'custom' | 'vendor' | 'customer' — - default : groups in the Root folder (location) provisioned by the system, automatically. Examples: Administrator, Project Manager, Engineer, Terminologist. - customer : groups provisioned by the system, automatically, for each customer location you add. Examples: Customer Requester, Customer Reviewer. - vendor : group provisioned by the system, automatically, for each vendor location you add. Examples: Vendor Project Manager. - custom : groups you can create in a location of your choice. Examples: Project Manager, Translator.
            - `metadata` unknown
          - `userType` 'user' | 'serviceUser' — The type of the account user.
          - `status` 'inactive' | 'active' | 'deleted' | 'provisioned' — Status of this account user.
          - `invitationLink` string — The user's invitation link. Retrieved only for RWS ID (formerly SDL ID) users—not service users. It is available only if the user has not yet accepted the invitation (status is `inactive`).
          - `membership` 'member' | 'collaborator' — Type of membership of this account user.
          - `metadata` unknown
        - `location` FolderV2 — Folder used for resource storage.
          - `id` string, required — The folder identifier.
          - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The name of the folder.</div>
          - `hasParent` boolean, nullable — Indicates if the folder has a parent folder.
          - `path` FolderPath[] — The hierarchical path. It consists of all the items of the path in reverse order, the parent of the current folder being the first in the list, and the root of the account being the last.
            - `id` string, required — The folder identifier.
            - `name` string, required — The name of the folder.
            - `location` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div>The location identifier.
            - `hasParent` boolean, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div>Indicates if the folder has a parent folder.
        - `projectTemplate` ProjectTemplateResponse — Project Template resource. (Not available for List Projects endpoint)
          - `id` string, required — The project template identifier.
          - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The project template name.</div>
          - `description` string — The project template description.
          - `languageDirections` LanguageDirectionNoStatistics[]
            - `id` string, required — The language direction identifier.
            - `sourceLanguage` Language, required — The language object.
              - …
            - `targetLanguage` Language, required — The language object.
              - …
          - `location` FolderV2 — Folder used for resource storage.
            - `id` string, required — The folder identifier.
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The name of the folder.</div>
            - `hasParent` boolean, nullable — Indicates if the folder has a parent folder.
            - `path` FolderPath[] — The hierarchical path. It consists of all the items of the path in reverse order, the parent of the current folder being the first in the list, and the root of the account being the last.
              - …
          - `translationEngine` TranslationEngine — Translation Engine resource. (Not available for List Projects endpoint)
            - `id` string, required — The translation engine identifier.
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The translation engine name.</div>
            - `description` string
            - `location` FolderV2 — Folder used for resource storage.
              - …
            - `definition` TranslationEngineDefinition — The definition of a translation engine.
              - …
          - `fileProcessingConfiguration` FileProcessingConfiguration — File Processing Configuration resource. (Not available for List Projects endpoint)
            - `id` string, required — The file processing configuration identifier.
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The file processing configuration name.</div>
            - `location` FolderV2 — Folder used for resource storage.
              - …
          - `pricingModel` PricingModel — Pricing Model resource. (Not available for List Projects endpoint)
            - `id` string, required — The pricing model identifier.
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The name of the Pricing Model.</div>
            - `description` string — The description of the Pricing Model.
            - `currencyCode` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The currency code (ISO 4217).</div>
            - `location` FolderV2 — Folder used for resource storage.
              - …
            - `languageDirectionPricing` LanguageDirectionCost[] — Costs applied for languages.
              - …
            - `additionalCosts` ProjectCost[] — Additional costs applied at project level.
              - …
          - `workflow` Workflow — The steps a project goes through. (Not available for List Projects endpoint)
            - `id` string, required — The workflow identifier.
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The workflow name.</div>
            - `description` string — The workflow description.
            - `location` Folder — Folder used for resource storage.
              - …
            - `workflowTemplate` WorkflowTemplate
              - …
            - `taskConfigurations` WorkflowTaskConfiguration[]
              - …
            - `languageDirections` LanguageDirectionNoStatistics[]
              - …
          - `customFields` CustomField[] — The Custom Fields.
            - `id` string, required — Custom Field identifier.
            - `name` string — Custom Field name. (Not available for List Projects, Get Project Template and List Project Templates endpoints)
            - `key` string — Custom Field friendly key.
            - `value` object — The value of the custom property. A date will be serialized as an ISO_8601 string.
          - `forceOnline` boolean — (Deprecated) Moved under settings.general.forceOnline
          - `projectManagers` ProjectManagerResponse[]
            - `type` 'group' | 'user'
            - `user` User — User in the account.
              - …
            - `group` Group — Group of Users.
              - …
          - `quoteTemplate` ProjectQuoteTemplateDeprecated — (Deprecated) moved under settings.general.quoteTemplate
            - `id` string, required — The identifier of the quote template.
            - `name` string — The name of the quote template.
            - `description` string — The description of the quote template.
            - `location` FolderV2 — Folder used for resource storage.
              - …
          - `scheduleTemplate` ScheduleTemplate — Schedule Template resource
            - `id` string, required
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Schedule Template name.</div>
            - `description` string — Schedule Template description.
            - `location` FolderV2 — Folder used for resource storage.
              - …
            - `configurations` ScheduleTemplateConfiguration[]
              - …
            - `projectScheduleConfiguration` ScheduleTemplateProjectConfiguration — Schedule Template Project Configuration resource
              - …
          - `settings` ProjectTemplateSettingsResponse — Project Template settings. See detailed description of options on the <a href="https://docs.rws.com/en-US/trados-enterprise-accelerate-791595/creating-project-templates-1054430">Official Documentation</a> page. (Not available for List Project Templates endpoint)
            - `general` ProjectTemplateGeneralSettingsResponse — General settings, are detailed in section 10.a
              - …
            - `batchTasks` ProjectTemplateBatchTasksSettings — Project Template Batch Tasks Settings
              - …
            - `verification` ProjectTemplateVerificationSettings
              - …
            - `qualityManagement` ProjectTemplateQualityManagementSettingsResponse
              - …
            - `termbaseSettings` ProjectTemplateTermbaseSettingsResponse
              - …
            - `translationMemorySettings` ProjectTemplateTranslationMemorySettingsResponse — Translation Memory settings
              - …
          - `lastModifiedAt` string, date-time — The date and time when the project template was modified. <br> UTC Timezone <br> Allowed formats: <br> "YYYY-MM-DDThh:mmZ" <br> "YYYY-MM-DDThh:mm:ssZ" <br> "YYYY-MM-DDThh:mm:ss.sZ" <br> "YYYY-MM-DDThh:mm:ss.ssZ" <br> "YYYY-MM-DDThh:mm:ss.sss
        - `translationEngine` TranslationEngine — Translation Engine resource. (Not available for List Projects endpoint)
          - `id` string, required — The translation engine identifier.
          - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The translation engine name.</div>
          - `description` string
          - `location` FolderV2 — Folder used for resource storage.
            - `id` string, required — The folder identifier.
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The name of the folder.</div>
            - `hasParent` boolean, nullable — Indicates if the folder has a parent folder.
            - `path` FolderPath[] — The hierarchical path. It consists of all the items of the path in reverse order, the parent of the current folder being the first in the list, and the root of the account being the last.
              - …
          - `definition` TranslationEngineDefinition — The definition of a translation engine.
            - `languageProcessingRuleId` string, required
            - `languagePairDefinitions` TranslationEngineDefinitionLanguagePair[]
              - …
            - `sequence` RemoteTranslationEngineSequence — Lists of IDs for Translation Memories, Termbases, Machine Translations and Large Language Models, in order of their use
              - …
            - `adjacentLanguagePenalty` integer
        - `fileProcessingConfiguration` FileProcessingConfiguration — File Processing Configuration resource. (Not available for List Projects endpoint)
          - `id` string, required — The file processing configuration identifier.
          - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The file processing configuration name.</div>
          - `location` FolderV2 — Folder used for resource storage.
            - `id` string, required — The folder identifier.
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The name of the folder.</div>
            - `hasParent` boolean, nullable — Indicates if the folder has a parent folder.
            - `path` FolderPath[] — The hierarchical path. It consists of all the items of the path in reverse order, the parent of the current folder being the first in the list, and the root of the account being the last.
              - …
        - `pricingModel` PricingModel — Pricing Model resource. (Not available for List Projects endpoint)
          - `id` string, required — The pricing model identifier.
          - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The name of the Pricing Model.</div>
          - `description` string — The description of the Pricing Model.
          - `currencyCode` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The currency code (ISO 4217).</div>
          - `location` FolderV2 — Folder used for resource storage.
            - `id` string, required — The folder identifier.
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The name of the folder.</div>
            - `hasParent` boolean, nullable — Indicates if the folder has a parent folder.
            - `path` FolderPath[] — The hierarchical path. It consists of all the items of the path in reverse order, the parent of the current folder being the first in the list, and the root of the account being the last.
              - …
          - `languageDirectionPricing` LanguageDirectionCost[] — Costs applied for languages.
            - `sourceLanguage` string, required — The source language code. For example: "en-US", "de-DE".
            - `targetLanguage` string, required — The target language code. For example: "en-US", "de-DE".
            - `contextMatch` number — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The price of context matches.
            - `exactMatch` number — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;"> The price of exact matches.
            - `new` number — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The price of new matches.
            - `perfectMatch` number — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The price of PerfectMatches.
            - `repetition` number — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The price of repetition matches.
            - `machineTranslation` number — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;"> The price of machine translation matches.
            - `pricingUnit` 'words' | 'characters'
            - `fuzzyMatches` FuzzyMatch[] — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">
              - …
            - `additionalCosts` LanguageCost[] — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">
              - …
          - `additionalCosts` ProjectCost[] — Additional costs applied at project level.
            - `name` string, required — The name of the additional cost.
            - `type` 'volume' | 'perTargetLanguage' | 'perFile' | 'hourly' | 'percentage' | 'perPage' | 'conditional' | 'adhoc' | 'adhocVolume', required
            - `index` number, required — The number of the additional cost.
            - `costPerUnit` number, required — The cost of a unit.
            - `unitCount` number, required — The number of units for which a cost is applied.
            - `volumeUnitType` 'words' | 'characters' | 'custom'
            - `conditionalCostType` 'absolute' | 'relative' | 'percentage'
            - `costOperator` 'less' | 'lessOrEqual' | 'greater' | 'greaterOrEqual'
            - `costVariable` 'wordCount' | 'runningTotal'
            - `operand` number — Operand of the Conditional type cost.
            - `serviceTypes` string[] — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div> Array of Service Type identifiers where this additional cost is applied.
            - `customUnitName` string — The name of the custom unit.
        - `workflow` Workflow — The steps a project goes through. (Not available for List Projects endpoint)
          - `id` string, required — The workflow identifier.
          - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The workflow name.</div>
          - `description` string — The workflow description.
          - `location` Folder — Folder used for resource storage.
            - `id` string, required — The folder identifier.
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The name of the folder.</div>
            - `hasParent` boolean, nullable — Indicates if the folder has a parent folder.
            - `path` FolderPath[] — The hierarchical path. It consists of all the items of the path in reverse order, the parent of the current folder being the first in the list, and the root of the account being the last.
              - …
          - `workflowTemplate` WorkflowTemplate
            - `id` string, required — The workflow template identifier.
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The workflow template name.</div>
            - `description` string — The workflow template description.
            - `taskTemplates` WorkflowTaskTemplate[]
              - …
            - `phases` WorkflowPhase[]
              - …
            - `transitions` WorkflowTemplateTransition[]
              - …
            - `configurationValues` WorkflowTaskTypeConfigValue[] — The task type configuration values set on this task. Each item corresponds to a configuration key defined in `taskTemplates.taskType.configurationDefinitions`.
              - …
          - `taskConfigurations` WorkflowTaskConfiguration[]
            - `scope` TaskConfigurationScope, required
              - …
            - `assignees` WorkflowTaskAssignee — Task assignee. Based on the "type", further details can be retrieved. <br> For ex. for "type"="user", "user" property is available. <br> For "projectCreator" and "projectManager" no other property is available.
              - …
            - `isSkipped` boolean, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;"></div>
            - `taskTemplate` WorkflowTaskTemplate, required
              - …
            - `configurationValues` WorkflowTaskTypeConfigValue[] — The task type configuration values set on this workflow task. Each item corresponds to a configuration key defined in `taskTemplate.taskType.configurationDefinitions`.
              - …
          - `languageDirections` LanguageDirectionNoStatistics[]
            - `id` string, required — The language direction identifier.
            - `sourceLanguage` Language, required — The language object.
              - …
            - `targetLanguage` Language, required — The language object.
              - …
        - `projectPlan` ProjectPlan — The configurations of the tasks that will be created in the future. Available now directly after project creation, project does not need to be started to be populated. (Not available for List Projects endpoint)
          - `taskConfigurations` ProjectPlanTaskConfiguration[]
            - `taskTemplate` WorkflowTaskTemplate, required
              - …
            - `scope` TaskConfigurationScope, required
              - …
            - `assignees` WorkflowTaskAssignee[]
              - …
            - `isSkipped` boolean, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Specifies if the task will be skipped.</div>
            - `dueBy` string, date-time, nullable — The due date of the future task. <br> UTC Timezone <br> Allowed formats: <br> "YYYY-MM-DDThh:mmZ" <br> "YYYY-MM-DDThh:mm:ssZ" <br> "YYYY-MM-DDThh:mm:ss.sZ" <br> "YYYY-MM-DDThh:mm:ss.ssZ" <br> "YYYY-MM-DDThh:mm:ss.sssZ"
            - `configurationValues` WorkflowTaskTypeConfigValue[] — The task type configuration values set on this task. Each item corresponds to a configuration key defined in `taskTemplate.taskType.configurationDefinitions`.
              - …
        - `analytics` Analytics — Project analytics.
          - `progress` AnalyticsProgress — Overall progress.
            - `overall` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The overall progress.</div>
          - `overdueStatistics` AnalyticsOverdueStatistics — Statistics on overdue work.
            - `overdueTasks` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The number of overdue tasks.</div>
            - `dueDateCloseTasks` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The number of tasks closed after the due date.</div>
          - `sourceFileStatistics` AnalyticsSourceFileStatistics[]
            - `role` 'translatable' | 'reference' | 'localizable' | 'unknown', nullable
            - `count` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The file count.</div>
          - `workloadStatistics` AnalyticsWorkloadStatistics — Statistics on workload progress.
            - `completed` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;"></div>
            - `total` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;"></div>
          - `taskTypeStatistics` AnalyticsTaskTypeStatistics[]
            - `id` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;"></div>
            - `key` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;"></div>
            - `total` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;"></div>
            - `current` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;"></div>
            - `completed` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;"></div>
            - `error` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;"></div>
          - `phaseStatistics` AnalyticsPhaseStatistics[]
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;"></div>
            - `total` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;"></div>
            - `completed` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;"></div>
        - `analysisStatistics` AnalysisStatistics
          - `exactMatch` Count — Statistics count.
            - `words` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of words.</div>
            - `segments` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of segments.</div>
            - `characters` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of characters.</div>
            - `placeables` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of placeables.</div>
            - `tags` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of tags.</div>
          - `inContextExactMatch` Count — Statistics count.
            - `words` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of words.</div>
            - `segments` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of segments.</div>
            - `characters` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of characters.</div>
            - `placeables` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of placeables.</div>
            - `tags` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of tags.</div>
          - `perfectMatch` Count — Statistics count.
            - `words` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of words.</div>
            - `segments` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of segments.</div>
            - `characters` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of characters.</div>
            - `placeables` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of placeables.</div>
            - `tags` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of tags.</div>
          - `new` Count — Statistics count.
            - `words` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of words.</div>
            - `segments` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of segments.</div>
            - `characters` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of characters.</div>
            - `placeables` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of placeables.</div>
            - `tags` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of tags.</div>
          - `repetitions` Count — Statistics count.
            - `words` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of words.</div>
            - `segments` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of segments.</div>
            - `characters` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of characters.</div>
            - `placeables` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of placeables.</div>
            - `tags` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of tags.</div>
          - `crossDocumentRepetitions` Count — Statistics count.
            - `words` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of words.</div>
            - `segments` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of segments.</div>
            - `characters` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of characters.</div>
            - `placeables` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of placeables.</div>
            - `tags` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of tags.</div>
          - `machineTranslation` Count — Statistics count.
            - `words` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of words.</div>
            - `segments` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of segments.</div>
            - `characters` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of characters.</div>
            - `placeables` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of placeables.</div>
            - `tags` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of tags.</div>
          - `locked` Count — Statistics count.
            - `words` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of words.</div>
            - `segments` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of segments.</div>
            - `characters` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of characters.</div>
            - `placeables` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of placeables.</div>
            - `tags` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of tags.</div>
          - `fuzzyMatch` FuzzyCount[] — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Statistics count.</div>
            - `count` Count — Statistics count.
              - …
            - `category` FuzzyCategory — Fuzzy category range. Example of Fuzzy bands: 100-100%, 95-99%, 85-94%, 75-84%, 50-74%.
              - …
          - `total` Count — Statistics count.
            - `words` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of words.</div>
            - `segments` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of segments.</div>
            - `characters` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of characters.</div>
            - `placeables` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of placeables.</div>
            - `tags` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of tags.</div>
        - `quote` Quote — Project quote.
          - `totalAmount` number, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Total translation fee.</div>
          - `currencyCode` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The currency code (ISO 4217).</div>
          - `translationCosts` QuoteTranslationCost[]
            - `total` number, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The total cost for the current target language.</div>
            - `targetLanguage` Language — The language object.
              - …
            - `exactMatch` TranslationCostItem
              - …
            - `inContextExactMatch` TranslationCostItem
              - …
            - `new` TranslationCostItem
              - …
            - `perfectMatch` TranslationCostItem
              - …
            - `repetitions` TranslationCostItem
              - …
            - `machineTranslation` TranslationCostItem
              - …
            - `fuzzyMatch` TranslationCostFuzzyItem[]
              - …
            - `runningTotal` number, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The sum of all the previously computed costs.</div>
          - `languageCosts` QuoteLanguageCost[]
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The name of the additional cost.</div>
            - `count` number, nullable — The number of units used to compute the total. Used only for 'volume', 'hourly', 'perPage' and 'percentage' cost types.
            - `total` number, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The computed cost.</div>
            - `cost` number, nullable — The cost of a unit.
            - `costType` 'volume' | 'hourly' | 'percentage' | 'perPage' | 'conditional' | 'adhoc' | 'adhocVolume'
            - `volumeUnitType` 'words' | 'characters' | 'custom'
            - `targetLanguage` Language — The language object.
              - …
            - `costOrder` integer, nullable — Indicates the order in which the additional cost is computed.
            - `conditionalCostType` 'absolute' | 'relative' | 'percentage'
            - `conditionalCostOperator` 'less' | 'lessOrEqual' | 'greater' | 'greaterOrEqual'
            - `conditionalCostVariable` 'wordCount' | 'runningTotal'
            - `conditionalCostThreshold` number, nullable — The value that is evaluated against the 'costVariable' based on the 'costOperator'.
            - `runningTotal` number, nullable — The sum of all the previously computed costs.
            - `customUnitName` string — The name of the custom unit.
          - `additionalCosts` QuoteAdditionalCost[]
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The name of the additional cost.</div>
            - `count` number, nullable — The number of units used to compute the total. Used only for 'volume', 'hourly', 'perPage' and 'percentage' cost types.
            - `total` number, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The computed cost.</div>
            - `cost` number, nullable — The cost of a unit.
            - `costType` 'volume' | 'perTargetLanguage' | 'perFile' | 'hourly' | 'percentage' | 'perPage' | 'conditional' | 'adhoc' | 'adhocVolume'
            - `volumeUnitType` 'words' | 'characters' | 'custom'
            - `costOrder` integer, nullable — Indicates the order in which the additional cost is computed.
            - `conditionalCostType` 'absolute' | 'relative' | 'percentage'
            - `conditionalCostOperator` 'less' | 'lessOrEqual' | 'greater' | 'greaterOrEqual'
            - `conditionalCostVariable` 'wordCount' | 'runningTotal'
            - `conditionalCostThreshold` number, nullable — The value that is evaluated against the 'costVariable' based on the 'costOperator'.
            - `runningTotal` number, nullable — The sum of all the previously computed costs.
            - `customUnitName` string — The name of the custom unit.
          - `notes` string — A message associated with the quote.
        - `customFields` CustomField[] — The Custom Fields
          - `id` string, required — Custom Field identifier.
          - `name` string — Custom Field name. (Not available for List Projects, Get Project Template and List Project Templates endpoints)
          - `key` string — Custom Field friendly key.
          - `value` object — The value of the custom property. A date will be serialized as an ISO_8601 string.
        - `tqaProfile` TqaProfile — As a project manager, you choose a TQA configuration and use it to automatically assess the quality of a translation document. The TQA configuration specifies: - Categories and subcategories that reviewers will use to classify the translation issues in a document. - Severities to define custom metrics you want to use to assess translation quality. - Score to measure the importance of each category or subcategory of an issue. - Pass/Fail Threshold to define the maximum number of penalty points admitted before failing the translation document.
          - `id` string, required — The identifier of the TQA profile.
          - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The name of the TQA Profile.</div>
          - `description` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The TQA Profile description.</div>
          - `location` FolderV2 — Folder used for resource storage.
            - `id` string, required — The folder identifier.
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The name of the folder.</div>
            - `hasParent` boolean, nullable — Indicates if the folder has a parent folder.
            - `path` FolderPath[] — The hierarchical path. It consists of all the items of the path in reverse order, the parent of the current folder being the first in the list, and the root of the account being the last.
              - …
          - `passFailThreshold` TqaProfilePassFailThreshold — Pass/Fail Threshold is used to define the maximum number of penalty points admitted before failing the translation document.
            - `points` integer — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The penalty points.</div>
            - `quantity` integer — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The quantity against which the points are measured.</div>
            - `scope` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Words or characters.</div>
          - `categories` TqaProfileCategory[] — Categories and subcategories are assessment options that reviewers can use to classify any translation-related issue that they find in a file.
            - `id` string — The category identifier.
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The category name.</div>
            - `description` string — The category description.
            - `abbreviation` string — The category abbreviation.
          - `severities` TqaProfileSeverity[] — Severities are custom metrics that reviewers can use to measure the importance of any translation-related issues that they find in a file.
            - `id` string — The severity identifier.
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The severity name.</div>
            - `type` string — The severity type.
          - `scores` TqaProfileScore[] — The TQA scoring indicates whether translations pass or fail the acceptance threshold.
            - `category` TqaProfileCategory
              - …
            - `severity` TqaProfileSeverity — Severities are custom metrics that reviewers can use to measure the importance of any translation-related issues that they find in a file.
              - …
            - `penalty` integer — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The associated penalty for this score's category and severity.</div>
          - `path` Folder[]
            - `id` string, required — The folder identifier.
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The name of the folder.</div>
            - `hasParent` boolean, nullable — Indicates if the folder has a parent folder.
            - `path` FolderPath[] — The hierarchical path. It consists of all the items of the path in reverse order, the parent of the current folder being the first in the list, and the root of the account being the last.
              - …
        - `forceOnline` boolean — This forces the project to be translated using the Trados Cloud Platform Online Editor exclusively.
        - `quoteTemplate` ProjectQuoteTemplate — Project Quote Template resource.
          - `id` string, required — The identifier of the quote template.
          - `name` string — The name of the quote template.
          - `description` string — The description of the quote template.
          - `location` FolderV2 — Folder used for resource storage.
            - `id` string, required — The folder identifier.
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The name of the folder.</div>
            - `hasParent` boolean, nullable — Indicates if the folder has a parent folder.
            - `path` FolderPath[] — The hierarchical path. It consists of all the items of the path in reverse order, the parent of the current folder being the first in the list, and the root of the account being the last.
              - …
        - `projectGroup` ProjectGroup — Project Group resource. (Not available for List Projects endpoint)
          - `id` string, required — The project group identifier.
          - `shortId` string — The short identifier of the project group.
          - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The project group name.</div>
          - `description` string — The project group description.
          - `status` 'new' | 'inProgress' | 'completed' | 'deleting' — The status of the projects in the project group. - `new`: the group is new created, or all projects in the group have status New - `inProgress`: at least one project in the group is in progress - `completed`: all projects in the group have status Completed - `deleting`: the group is getting deleted and the projects are removing from it
          - `projects` ProjectGroupProject[] — The projects in the project group.
            - `id` string, required — The project identifier.
            - `status` 'attaching' | 'attached' | 'detaching' | 'updating' | 'failed' — The project's status.
          - `location` FolderV2 — Folder used for resource storage.
            - `id` string, required — The folder identifier.
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The name of the folder.</div>
            - `hasParent` boolean, nullable — Indicates if the folder has a parent folder.
            - `path` FolderPath[] — The hierarchical path. It consists of all the items of the path in reverse order, the parent of the current folder being the first in the list, and the root of the account being the last.
              - …
          - `createdAt` string, date-time — The date and time when the project group was created. <br> UTC Timezone <br> Allowed formats: <br> "YYYY-MM-DDThh:mmZ" <br> "YYYY-MM-DDThh:mm:ssZ" <br> "YYYY-MM-DDThh:mm:ss.sZ" <br> "YYYY-MM-DDThh:mm:ss.ssZ" <br> "YYYY-MM-DDThh:mm:ss.sssZ"
          - `lastModifiedAt` string, date-time — The date and time when the project group was modified. <br> UTC Timezone <br> Allowed formats: <br> "YYYY-MM-DDThh:mmZ" <br> "YYYY-MM-DDThh:mm:ssZ" <br> "YYYY-MM-DDThh:mm:ss.sZ" <br> "YYYY-MM-DDThh:mm:ss.ssZ" <br> "YYYY-MM-DDThh:mm:ss.sssZ"
        - `projectManagers` ProjectManagerResponse[]
          - `type` 'group' | 'user'
          - `user` User — User in the account.
            - `id` string, required — User account identifier.
            - `description` string — Description of this account user. For Service account users only.
            - `email` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's email address. Retrieved only for RWS ID (formerly SDL ID) users (not service users) that the authenticated entity is authorized to read.</div>
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's name. Retrieved only for Service users (not RWS ID users) that the authenticated entity is authorized to read.</div>
            - `firstName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's first name. Retrieved only for RWS ID (formerly SDL ID) users (not service users) that the authenticated entity is authorized to read.</div>
            - `lastName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's last name. Retrieved only for RWS ID (formerly SDL ID) users (not service users) that the authenticated entity is authorized to read.</div>
            - `anonymized` boolean, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">This shows if the authenticated entity has access to read the details of the user or not. If true, then the 'anonymizedUserName' should be retrieved.</div>
            - `anonymizedUserName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Retrieved if the authenticated entity does not have access to read the User.</div>
            - `account` Account
              - …
            - `location` FolderV2 — Folder used for resource storage.
              - …
            - `groups` Group[]
              - …
            - `userType` 'user' | 'serviceUser' — The type of the account user.
            - `status` 'inactive' | 'active' | 'deleted' | 'provisioned' — Status of this account user.
            - `invitationLink` string — The user's invitation link. Retrieved only for RWS ID (formerly SDL ID) users—not service users. It is available only if the user has not yet accepted the invitation (status is `inactive`).
            - `membership` 'member' | 'collaborator' — Type of membership of this account user.
            - `metadata` unknown
          - `group` Group — Group of Users.
            - `id` string, required — The group identifier.
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The group name.</div>
            - `description` string — The group description.
            - `location` FolderV2 — Folder used for resource storage.
              - …
            - `users` User[]
              - …
            - `roles` Role[] — **Note**: The identifier of `Administrator` role will not be exposed publicly and a `********` placeholder will be returned on this endpoint for the role.
              - …
            - `additionalRoles` GroupAdditionalRoles[]
              - …
            - `groupType` 'default' | 'custom' | 'vendor' | 'customer' — - default : groups in the Root folder (location) provisioned by the system, automatically. Examples: Administrator, Project Manager, Engineer, Terminologist. - customer : groups provisioned by the system, automatically, for each customer location you add. Examples: Customer Requester, Customer Reviewer. - vendor : group provisioned by the system, automatically, for each vendor location you add. Examples: Vendor Project Manager. - custom : groups you can create in a location of your choice. Examples: Project Manager, Translator.
            - `metadata` unknown
        - `scheduleTemplate` ScheduleTemplate — Schedule Template resource
          - `id` string, required
          - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Schedule Template name.</div>
          - `description` string — Schedule Template description.
          - `location` FolderV2 — Folder used for resource storage.
            - `id` string, required — The folder identifier.
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The name of the folder.</div>
            - `hasParent` boolean, nullable — Indicates if the folder has a parent folder.
            - `path` FolderPath[] — The hierarchical path. It consists of all the items of the path in reverse order, the parent of the current folder being the first in the list, and the root of the account being the last.
              - …
          - `configurations` ScheduleTemplateConfiguration[]
            - `taskTypeId` string, required — The identifier of the human task type.
            - `taskTypeName` string — The name of the task type.
            - `schedules` ScheduleTemplateConfigurationSchedules[]
              - …
          - `projectScheduleConfiguration` ScheduleTemplateProjectConfiguration — Schedule Template Project Configuration resource
            - `duration` integer — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Expressed in minutes.</div>
            - `reminder` unknown
        - `perfectMatchMapping` PerfectMatchMappingSimpleResponse — PerfectMatch Mapping (Not available for List Projects endpoint)
          - `id` string, required — The mapping identifier.
          - `createdBy` User — User in the account.
            - `id` string, required — User account identifier.
            - `description` string — Description of this account user. For Service account users only.
            - `email` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's email address. Retrieved only for RWS ID (formerly SDL ID) users (not service users) that the authenticated entity is authorized to read.</div>
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's name. Retrieved only for Service users (not RWS ID users) that the authenticated entity is authorized to read.</div>
            - `firstName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's first name. Retrieved only for RWS ID (formerly SDL ID) users (not service users) that the authenticated entity is authorized to read.</div>
            - `lastName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's last name. Retrieved only for RWS ID (formerly SDL ID) users (not service users) that the authenticated entity is authorized to read.</div>
            - `anonymized` boolean, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">This shows if the authenticated entity has access to read the details of the user or not. If true, then the 'anonymizedUserName' should be retrieved.</div>
            - `anonymizedUserName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Retrieved if the authenticated entity does not have access to read the User.</div>
            - `account` Account
              - …
            - `location` FolderV2 — Folder used for resource storage.
              - …
            - `groups` Group[]
              - …
            - `userType` 'user' | 'serviceUser' — The type of the account user.
            - `status` 'inactive' | 'active' | 'deleted' | 'provisioned' — Status of this account user.
            - `invitationLink` string — The user's invitation link. Retrieved only for RWS ID (formerly SDL ID) users—not service users. It is available only if the user has not yet accepted the invitation (status is `inactive`).
            - `membership` 'member' | 'collaborator' — Type of membership of this account user.
            - `metadata` unknown
          - `batchMappings` PerfectMatchBatchMapping[] — A collection of mappings per project batches.
            - `id` string, required — The identifier of this batch mapping.
            - `batch` integer — The project batch associated with this mapping.
            - `status` 'generating' | 'generated' | 'pending' — The status of the matching operation. - `pending` - The matching background operation has not started yet. - `generating` - The system is currently matching candidates. - `generated` - The matching background operation has finished and any possible candidates have been found.
            - `matchingProjects` Project[]
            - `matchingFiles` PerfectMatchFileMapping[] — The file matches identified based on this mapping. Matching files will be available when status is `generated`.
              - …
        - `settings` ProjectSettingsResponse
          - `general` ProjectSettingsGeneralResponse
            - `completionConfiguration` CompletionConfigResponse — Completion configuration properties.
              - …
          - `translationMemorySettings` ProjectTranslationMemorySettingsResponse — Translation Memory settings
            - `filters` TranslationMemorySettingsFiltersResponse
              - …
            - `updateTranslationMemoryFields` TranslationMemorySettingsUpdateFieldResponse[]
              - …
          - `batchTasks` ProjectBatchTasksSettings — Project Batch Tasks Settings
            - `preProcessing` ProjectBatchPreProcessingSettings
              - …
      - `sourceFile` SourceFile — Source File.
        - `id` string, required
        - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The file name.</div>
        - `role` 'translatable' | 'reference' | 'localizable' | 'unknown', nullable
        - `language` Language — The language object.
          - `languageCode` string, required — Language code. ex: "en-US", "de-DE".
          - `englishName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Human readable name.</div>
          - `direction` string
          - `parentLanguageCode` string
          - `defaultSpecificLanguageCode` string
          - `isNeutral` boolean, nullable
        - `versions` SourceFileVersion[] — The source file versions. (Not available for List endpoints).
          - `id` string, required — The source file version identifier.
          - `type` 'native' | 'bcm', nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The version type.</div>
          - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The file version name. This is a synthetic value, typically constructed from the version number and the originating task name.</div>
          - `version` integer, required — A numeric value, incremented for each new version.
          - `originatingTaskId` string — The identifier of the task that generated the file.
        - `targetLanguages` Language[]
          - `languageCode` string, required — Language code. ex: "en-US", "de-DE".
          - `englishName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Human readable name.</div>
          - `direction` string
          - `parentLanguageCode` string
          - `defaultSpecificLanguageCode` string
          - `isNeutral` boolean, nullable
        - `path` string[]
        - `totalWords` integer — Word count in the source file. </br> Available only for translatable source files, and only after the workflow task with Task Type `convert` (File Format Conversion) was executed on the source file. </br> Available only on the List Source Files endpoint.
      - `targetFile` TargetFile — Target File.
        - `id` string, required
        - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The target file name.</div>
        - `languageDirection` LanguageDirection — A Language Direction.
          - `id` string, required — The language direction identifier.
          - `sourceLanguage` Language, required — The language object.
            - `languageCode` string, required — Language code. ex: "en-US", "de-DE".
            - `englishName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Human readable name.</div>
            - `direction` string
            - `parentLanguageCode` string
            - `defaultSpecificLanguageCode` string
            - `isNeutral` boolean, nullable
          - `targetLanguage` Language, required — The language object.
            - `languageCode` string, required — Language code. ex: "en-US", "de-DE".
            - `englishName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Human readable name.</div>
            - `direction` string
            - `parentLanguageCode` string
            - `defaultSpecificLanguageCode` string
            - `isNeutral` boolean, nullable
          - `analysisStatistics` AnalysisStatistics
            - `exactMatch` Count — Statistics count.
              - …
            - `inContextExactMatch` Count — Statistics count.
              - …
            - `perfectMatch` Count — Statistics count.
              - …
            - `new` Count — Statistics count.
              - …
            - `repetitions` Count — Statistics count.
              - …
            - `crossDocumentRepetitions` Count — Statistics count.
              - …
            - `machineTranslation` Count — Statistics count.
              - …
            - `locked` Count — Statistics count.
              - …
            - `fuzzyMatch` FuzzyCount[] — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Statistics count.</div>
              - …
            - `total` Count — Statistics count.
              - …
        - `sourceFile` SourceFile — Source File.
          - `id` string, required
          - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The file name.</div>
          - `role` 'translatable' | 'reference' | 'localizable' | 'unknown', nullable
          - `language` Language — The language object.
            - `languageCode` string, required — Language code. ex: "en-US", "de-DE".
            - `englishName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Human readable name.</div>
            - `direction` string
            - `parentLanguageCode` string
            - `defaultSpecificLanguageCode` string
            - `isNeutral` boolean, nullable
          - `versions` SourceFileVersion[] — The source file versions. (Not available for List endpoints).
            - `id` string, required — The source file version identifier.
            - `type` 'native' | 'bcm', nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The version type.</div>
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The file version name. This is a synthetic value, typically constructed from the version number and the originating task name.</div>
            - `version` integer, required — A numeric value, incremented for each new version.
            - `originatingTaskId` string — The identifier of the task that generated the file.
          - `targetLanguages` Language[]
            - `languageCode` string, required — Language code. ex: "en-US", "de-DE".
            - `englishName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Human readable name.</div>
            - `direction` string
            - `parentLanguageCode` string
            - `defaultSpecificLanguageCode` string
            - `isNeutral` boolean, nullable
          - `path` string[]
          - `totalWords` integer — Word count in the source file. </br> Available only for translatable source files, and only after the workflow task with Task Type `convert` (File Format Conversion) was executed on the source file. </br> Available only on the List Source Files endpoint.
        - `latestVersion` TargetFileLatestVersion — Target File Latest Version.
          - `id` string, required — The target file version identifier.
          - `type` 'native' | 'bcm', nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The version type.</div>
          - `version` integer, required — A numeric value, incremented for each new version.
        - `analysisStatistics` AnalysisStatistics
          - `exactMatch` Count — Statistics count.
            - `words` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of words.</div>
            - `segments` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of segments.</div>
            - `characters` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of characters.</div>
            - `placeables` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of placeables.</div>
            - `tags` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of tags.</div>
          - `inContextExactMatch` Count — Statistics count.
            - `words` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of words.</div>
            - `segments` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of segments.</div>
            - `characters` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of characters.</div>
            - `placeables` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of placeables.</div>
            - `tags` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of tags.</div>
          - `perfectMatch` Count — Statistics count.
            - `words` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of words.</div>
            - `segments` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of segments.</div>
            - `characters` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of characters.</div>
            - `placeables` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of placeables.</div>
            - `tags` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of tags.</div>
          - `new` Count — Statistics count.
            - `words` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of words.</div>
            - `segments` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of segments.</div>
            - `characters` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of characters.</div>
            - `placeables` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of placeables.</div>
            - `tags` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of tags.</div>
          - `repetitions` Count — Statistics count.
            - `words` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of words.</div>
            - `segments` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of segments.</div>
            - `characters` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of characters.</div>
            - `placeables` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of placeables.</div>
            - `tags` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of tags.</div>
          - `crossDocumentRepetitions` Count — Statistics count.
            - `words` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of words.</div>
            - `segments` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of segments.</div>
            - `characters` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of characters.</div>
            - `placeables` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of placeables.</div>
            - `tags` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of tags.</div>
          - `machineTranslation` Count — Statistics count.
            - `words` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of words.</div>
            - `segments` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of segments.</div>
            - `characters` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of characters.</div>
            - `placeables` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of placeables.</div>
            - `tags` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of tags.</div>
          - `locked` Count — Statistics count.
            - `words` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of words.</div>
            - `segments` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of segments.</div>
            - `characters` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of characters.</div>
            - `placeables` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of placeables.</div>
            - `tags` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of tags.</div>
          - `fuzzyMatch` FuzzyCount[] — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Statistics count.</div>
            - `count` Count — Statistics count.
              - …
            - `category` FuzzyCategory — Fuzzy category range. Example of Fuzzy bands: 100-100%, 95-99%, 85-94%, 75-84%, 50-74%.
              - …
          - `total` Count — Statistics count.
            - `words` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of words.</div>
            - `segments` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of segments.</div>
            - `characters` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of characters.</div>
            - `placeables` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of placeables.</div>
            - `tags` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of tags.</div>
        - `status` 'inProgress' | 'finished' | 'canceled', nullable — Shows if the file is still being processed (inProgress) or if it has been fully processed (finished) by the workflow. A target file is automatically marked as finished by the workflow engine, once there are no more tasks to be performed on it.
      - `languageDirection` LanguageDirection — A Language Direction.
        - `id` string, required — The language direction identifier.
        - `sourceLanguage` Language, required — The language object.
          - `languageCode` string, required — Language code. ex: "en-US", "de-DE".
          - `englishName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Human readable name.</div>
          - `direction` string
          - `parentLanguageCode` string
          - `defaultSpecificLanguageCode` string
          - `isNeutral` boolean, nullable
        - `targetLanguage` Language, required — The language object.
          - `languageCode` string, required — Language code. ex: "en-US", "de-DE".
          - `englishName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Human readable name.</div>
          - `direction` string
          - `parentLanguageCode` string
          - `defaultSpecificLanguageCode` string
          - `isNeutral` boolean, nullable
        - `analysisStatistics` AnalysisStatistics
          - `exactMatch` Count — Statistics count.
            - `words` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of words.</div>
            - `segments` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of segments.</div>
            - `characters` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of characters.</div>
            - `placeables` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of placeables.</div>
            - `tags` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of tags.</div>
          - `inContextExactMatch` Count — Statistics count.
            - `words` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of words.</div>
            - `segments` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of segments.</div>
            - `characters` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of characters.</div>
            - `placeables` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of placeables.</div>
            - `tags` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of tags.</div>
          - `perfectMatch` Count — Statistics count.
            - `words` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of words.</div>
            - `segments` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of segments.</div>
            - `characters` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of characters.</div>
            - `placeables` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of placeables.</div>
            - `tags` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of tags.</div>
          - `new` Count — Statistics count.
            - `words` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of words.</div>
            - `segments` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of segments.</div>
            - `characters` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of characters.</div>
            - `placeables` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of placeables.</div>
            - `tags` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of tags.</div>
          - `repetitions` Count — Statistics count.
            - `words` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of words.</div>
            - `segments` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of segments.</div>
            - `characters` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of characters.</div>
            - `placeables` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of placeables.</div>
            - `tags` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of tags.</div>
          - `crossDocumentRepetitions` Count — Statistics count.
            - `words` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of words.</div>
            - `segments` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of segments.</div>
            - `characters` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of characters.</div>
            - `placeables` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of placeables.</div>
            - `tags` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of tags.</div>
          - `machineTranslation` Count — Statistics count.
            - `words` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of words.</div>
            - `segments` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of segments.</div>
            - `characters` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of characters.</div>
            - `placeables` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of placeables.</div>
            - `tags` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of tags.</div>
          - `locked` Count — Statistics count.
            - `words` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of words.</div>
            - `segments` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of segments.</div>
            - `characters` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of characters.</div>
            - `placeables` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of placeables.</div>
            - `tags` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of tags.</div>
          - `fuzzyMatch` FuzzyCount[] — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Statistics count.</div>
            - `count` Count — Statistics count.
              - …
            - `category` FuzzyCategory — Fuzzy category range. Example of Fuzzy bands: 100-100%, 95-99%, 85-94%, 75-84%, 50-74%.
              - …
          - `total` Count — Statistics count.
            - `words` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of words.</div>
            - `segments` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of segments.</div>
            - `characters` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of characters.</div>
            - `placeables` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of placeables.</div>
            - `tags` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of tags.</div>
      - `vendorOrder` VendorOrder — A vendor order resource.
        - `id` string, required
        - `quote` Quote — Project quote.
          - `totalAmount` number, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Total translation fee.</div>
          - `currencyCode` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The currency code (ISO 4217).</div>
          - `translationCosts` QuoteTranslationCost[]
            - `total` number, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The total cost for the current target language.</div>
            - `targetLanguage` Language — The language object.
              - …
            - `exactMatch` TranslationCostItem
              - …
            - `inContextExactMatch` TranslationCostItem
              - …
            - `new` TranslationCostItem
              - …
            - `perfectMatch` TranslationCostItem
              - …
            - `repetitions` TranslationCostItem
              - …
            - `machineTranslation` TranslationCostItem
              - …
            - `fuzzyMatch` TranslationCostFuzzyItem[]
              - …
            - `runningTotal` number, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The sum of all the previously computed costs.</div>
          - `languageCosts` QuoteLanguageCost[]
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The name of the additional cost.</div>
            - `count` number, nullable — The number of units used to compute the total. Used only for 'volume', 'hourly', 'perPage' and 'percentage' cost types.
            - `total` number, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The computed cost.</div>
            - `cost` number, nullable — The cost of a unit.
            - `costType` 'volume' | 'hourly' | 'percentage' | 'perPage' | 'conditional' | 'adhoc' | 'adhocVolume'
            - `volumeUnitType` 'words' | 'characters' | 'custom'
            - `targetLanguage` Language — The language object.
              - …
            - `costOrder` integer, nullable — Indicates the order in which the additional cost is computed.
            - `conditionalCostType` 'absolute' | 'relative' | 'percentage'
            - `conditionalCostOperator` 'less' | 'lessOrEqual' | 'greater' | 'greaterOrEqual'
            - `conditionalCostVariable` 'wordCount' | 'runningTotal'
            - `conditionalCostThreshold` number, nullable — The value that is evaluated against the 'costVariable' based on the 'costOperator'.
            - `runningTotal` number, nullable — The sum of all the previously computed costs.
            - `customUnitName` string — The name of the custom unit.
          - `additionalCosts` QuoteAdditionalCost[]
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The name of the additional cost.</div>
            - `count` number, nullable — The number of units used to compute the total. Used only for 'volume', 'hourly', 'perPage' and 'percentage' cost types.
            - `total` number, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The computed cost.</div>
            - `cost` number, nullable — The cost of a unit.
            - `costType` 'volume' | 'perTargetLanguage' | 'perFile' | 'hourly' | 'percentage' | 'perPage' | 'conditional' | 'adhoc' | 'adhocVolume'
            - `volumeUnitType` 'words' | 'characters' | 'custom'
            - `costOrder` integer, nullable — Indicates the order in which the additional cost is computed.
            - `conditionalCostType` 'absolute' | 'relative' | 'percentage'
            - `conditionalCostOperator` 'less' | 'lessOrEqual' | 'greater' | 'greaterOrEqual'
            - `conditionalCostVariable` 'wordCount' | 'runningTotal'
            - `conditionalCostThreshold` number, nullable — The value that is evaluated against the 'costVariable' based on the 'costOperator'.
            - `runningTotal` number, nullable — The sum of all the previously computed costs.
            - `customUnitName` string — The name of the custom unit.
          - `notes` string — A message associated with the quote.
    - `inputFiles` TaskInputFile[]
      - `type` 'sourceFile' | 'targetFile', nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;"></div>
      - `sourceFile` SourceFile — Source File.
        - `id` string, required
        - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The file name.</div>
        - `role` 'translatable' | 'reference' | 'localizable' | 'unknown', nullable
        - `language` Language — The language object.
          - `languageCode` string, required — Language code. ex: "en-US", "de-DE".
          - `englishName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Human readable name.</div>
          - `direction` string
          - `parentLanguageCode` string
          - `defaultSpecificLanguageCode` string
          - `isNeutral` boolean, nullable
        - `versions` SourceFileVersion[] — The source file versions. (Not available for List endpoints).
          - `id` string, required — The source file version identifier.
          - `type` 'native' | 'bcm', nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The version type.</div>
          - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The file version name. This is a synthetic value, typically constructed from the version number and the originating task name.</div>
          - `version` integer, required — A numeric value, incremented for each new version.
          - `originatingTaskId` string — The identifier of the task that generated the file.
        - `targetLanguages` Language[]
          - `languageCode` string, required — Language code. ex: "en-US", "de-DE".
          - `englishName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Human readable name.</div>
          - `direction` string
          - `parentLanguageCode` string
          - `defaultSpecificLanguageCode` string
          - `isNeutral` boolean, nullable
        - `path` string[]
        - `totalWords` integer — Word count in the source file. </br> Available only for translatable source files, and only after the workflow task with Task Type `convert` (File Format Conversion) was executed on the source file. </br> Available only on the List Source Files endpoint.
      - `targetFile` TargetFile — Target File.
        - `id` string, required
        - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The target file name.</div>
        - `languageDirection` LanguageDirection — A Language Direction.
          - `id` string, required — The language direction identifier.
          - `sourceLanguage` Language, required — The language object.
            - `languageCode` string, required — Language code. ex: "en-US", "de-DE".
            - `englishName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Human readable name.</div>
            - `direction` string
            - `parentLanguageCode` string
            - `defaultSpecificLanguageCode` string
            - `isNeutral` boolean, nullable
          - `targetLanguage` Language, required — The language object.
            - `languageCode` string, required — Language code. ex: "en-US", "de-DE".
            - `englishName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Human readable name.</div>
            - `direction` string
            - `parentLanguageCode` string
            - `defaultSpecificLanguageCode` string
            - `isNeutral` boolean, nullable
          - `analysisStatistics` AnalysisStatistics
            - `exactMatch` Count — Statistics count.
              - …
            - `inContextExactMatch` Count — Statistics count.
              - …
            - `perfectMatch` Count — Statistics count.
              - …
            - `new` Count — Statistics count.
              - …
            - `repetitions` Count — Statistics count.
              - …
            - `crossDocumentRepetitions` Count — Statistics count.
              - …
            - `machineTranslation` Count — Statistics count.
              - …
            - `locked` Count — Statistics count.
              - …
            - `fuzzyMatch` FuzzyCount[] — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Statistics count.</div>
              - …
            - `total` Count — Statistics count.
              - …
        - `sourceFile` SourceFile — Source File.
          - `id` string, required
          - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The file name.</div>
          - `role` 'translatable' | 'reference' | 'localizable' | 'unknown', nullable
          - `language` Language — The language object.
            - `languageCode` string, required — Language code. ex: "en-US", "de-DE".
            - `englishName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Human readable name.</div>
            - `direction` string
            - `parentLanguageCode` string
            - `defaultSpecificLanguageCode` string
            - `isNeutral` boolean, nullable
          - `versions` SourceFileVersion[] — The source file versions. (Not available for List endpoints).
            - `id` string, required — The source file version identifier.
            - `type` 'native' | 'bcm', nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The version type.</div>
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The file version name. This is a synthetic value, typically constructed from the version number and the originating task name.</div>
            - `version` integer, required — A numeric value, incremented for each new version.
            - `originatingTaskId` string — The identifier of the task that generated the file.
          - `targetLanguages` Language[]
            - `languageCode` string, required — Language code. ex: "en-US", "de-DE".
            - `englishName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Human readable name.</div>
            - `direction` string
            - `parentLanguageCode` string
            - `defaultSpecificLanguageCode` string
            - `isNeutral` boolean, nullable
          - `path` string[]
          - `totalWords` integer — Word count in the source file. </br> Available only for translatable source files, and only after the workflow task with Task Type `convert` (File Format Conversion) was executed on the source file. </br> Available only on the List Source Files endpoint.
        - `latestVersion` TargetFileLatestVersion — Target File Latest Version.
          - `id` string, required — The target file version identifier.
          - `type` 'native' | 'bcm', nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The version type.</div>
          - `version` integer, required — A numeric value, incremented for each new version.
        - `analysisStatistics` AnalysisStatistics
          - `exactMatch` Count — Statistics count.
            - `words` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of words.</div>
            - `segments` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of segments.</div>
            - `characters` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of characters.</div>
            - `placeables` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of placeables.</div>
            - `tags` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of tags.</div>
          - `inContextExactMatch` Count — Statistics count.
            - `words` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of words.</div>
            - `segments` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of segments.</div>
            - `characters` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of characters.</div>
            - `placeables` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of placeables.</div>
            - `tags` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of tags.</div>
          - `perfectMatch` Count — Statistics count.
            - `words` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of words.</div>
            - `segments` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of segments.</div>
            - `characters` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of characters.</div>
            - `placeables` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of placeables.</div>
            - `tags` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of tags.</div>
          - `new` Count — Statistics count.
            - `words` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of words.</div>
            - `segments` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of segments.</div>
            - `characters` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of characters.</div>
            - `placeables` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of placeables.</div>
            - `tags` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of tags.</div>
          - `repetitions` Count — Statistics count.
            - `words` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of words.</div>
            - `segments` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of segments.</div>
            - `characters` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of characters.</div>
            - `placeables` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of placeables.</div>
            - `tags` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of tags.</div>
          - `crossDocumentRepetitions` Count — Statistics count.
            - `words` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of words.</div>
            - `segments` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of segments.</div>
            - `characters` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of characters.</div>
            - `placeables` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of placeables.</div>
            - `tags` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of tags.</div>
          - `machineTranslation` Count — Statistics count.
            - `words` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of words.</div>
            - `segments` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of segments.</div>
            - `characters` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of characters.</div>
            - `placeables` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of placeables.</div>
            - `tags` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of tags.</div>
          - `locked` Count — Statistics count.
            - `words` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of words.</div>
            - `segments` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of segments.</div>
            - `characters` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of characters.</div>
            - `placeables` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of placeables.</div>
            - `tags` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of tags.</div>
          - `fuzzyMatch` FuzzyCount[] — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Statistics count.</div>
            - `count` Count — Statistics count.
              - …
            - `category` FuzzyCategory — Fuzzy category range. Example of Fuzzy bands: 100-100%, 95-99%, 85-94%, 75-84%, 50-74%.
              - …
          - `total` Count — Statistics count.
            - `words` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of words.</div>
            - `segments` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of segments.</div>
            - `characters` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of characters.</div>
            - `placeables` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of placeables.</div>
            - `tags` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of tags.</div>
        - `status` 'inProgress' | 'finished' | 'canceled', nullable — Shows if the file is still being processed (inProgress) or if it has been fully processed (finished) by the workflow. A target file is automatically marked as finished by the workflow engine, once there are no more tasks to be performed on it.
    - `owner` TaskOwner — Task owner. Based on the "type", the following properties can be retrieved: "user" or "group".
      - `type` 'user' | 'group', required — The owner type.
      - `user` User — User in the account.
        - `id` string, required — User account identifier.
        - `description` string — Description of this account user. For Service account users only.
        - `email` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's email address. Retrieved only for RWS ID (formerly SDL ID) users (not service users) that the authenticated entity is authorized to read.</div>
        - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's name. Retrieved only for Service users (not RWS ID users) that the authenticated entity is authorized to read.</div>
        - `firstName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's first name. Retrieved only for RWS ID (formerly SDL ID) users (not service users) that the authenticated entity is authorized to read.</div>
        - `lastName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's last name. Retrieved only for RWS ID (formerly SDL ID) users (not service users) that the authenticated entity is authorized to read.</div>
        - `anonymized` boolean, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">This shows if the authenticated entity has access to read the details of the user or not. If true, then the 'anonymizedUserName' should be retrieved.</div>
        - `anonymizedUserName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Retrieved if the authenticated entity does not have access to read the User.</div>
        - `account` Account
          - `id` string, required — The account identifier.
          - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The account name.</div>
        - `location` FolderV2 — Folder used for resource storage.
          - `id` string, required — The folder identifier.
          - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The name of the folder.</div>
          - `hasParent` boolean, nullable — Indicates if the folder has a parent folder.
          - `path` FolderPath[] — The hierarchical path. It consists of all the items of the path in reverse order, the parent of the current folder being the first in the list, and the root of the account being the last.
            - `id` string, required — The folder identifier.
            - `name` string, required — The name of the folder.
            - `location` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div>The location identifier.
            - `hasParent` boolean, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div>Indicates if the folder has a parent folder.
        - `groups` Group[]
          - `id` string, required — The group identifier.
          - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The group name.</div>
          - `description` string — The group description.
          - `location` FolderV2 — Folder used for resource storage.
            - `id` string, required — The folder identifier.
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The name of the folder.</div>
            - `hasParent` boolean, nullable — Indicates if the folder has a parent folder.
            - `path` FolderPath[] — The hierarchical path. It consists of all the items of the path in reverse order, the parent of the current folder being the first in the list, and the root of the account being the last.
              - …
          - `users` User[]
          - `roles` Role[] — **Note**: The identifier of `Administrator` role will not be exposed publicly and a `********` placeholder will be returned on this endpoint for the role.
            - `id` string, required — The identifier of the role.
            - `type` 'provisioned' | 'custom', required — The role type.
            - `name` string, required — Name of the role.
            - `description` string — Description of the role.
            - `permissions` Permission[] — List of permissions associated with role.
              - …
          - `additionalRoles` GroupAdditionalRoles[]
            - `location` FolderV2, required — Folder used for resource storage.
              - …
            - `roles` Role[], required
              - …
          - `groupType` 'default' | 'custom' | 'vendor' | 'customer' — - default : groups in the Root folder (location) provisioned by the system, automatically. Examples: Administrator, Project Manager, Engineer, Terminologist. - customer : groups provisioned by the system, automatically, for each customer location you add. Examples: Customer Requester, Customer Reviewer. - vendor : group provisioned by the system, automatically, for each vendor location you add. Examples: Vendor Project Manager. - custom : groups you can create in a location of your choice. Examples: Project Manager, Translator.
          - `metadata` unknown
        - `userType` 'user' | 'serviceUser' — The type of the account user.
        - `status` 'inactive' | 'active' | 'deleted' | 'provisioned' — Status of this account user.
        - `invitationLink` string — The user's invitation link. Retrieved only for RWS ID (formerly SDL ID) users—not service users. It is available only if the user has not yet accepted the invitation (status is `inactive`).
        - `membership` 'member' | 'collaborator' — Type of membership of this account user.
        - `metadata` unknown
      - `group` Group — Group of Users.
        - `id` string, required — The group identifier.
        - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The group name.</div>
        - `description` string — The group description.
        - `location` FolderV2 — Folder used for resource storage.
          - `id` string, required — The folder identifier.
          - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The name of the folder.</div>
          - `hasParent` boolean, nullable — Indicates if the folder has a parent folder.
          - `path` FolderPath[] — The hierarchical path. It consists of all the items of the path in reverse order, the parent of the current folder being the first in the list, and the root of the account being the last.
            - `id` string, required — The folder identifier.
            - `name` string, required — The name of the folder.
            - `location` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div>The location identifier.
            - `hasParent` boolean, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div>Indicates if the folder has a parent folder.
        - `users` User[]
          - `id` string, required — User account identifier.
          - `description` string — Description of this account user. For Service account users only.
          - `email` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's email address. Retrieved only for RWS ID (formerly SDL ID) users (not service users) that the authenticated entity is authorized to read.</div>
          - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's name. Retrieved only for Service users (not RWS ID users) that the authenticated entity is authorized to read.</div>
          - `firstName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's first name. Retrieved only for RWS ID (formerly SDL ID) users (not service users) that the authenticated entity is authorized to read.</div>
          - `lastName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's last name. Retrieved only for RWS ID (formerly SDL ID) users (not service users) that the authenticated entity is authorized to read.</div>
          - `anonymized` boolean, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">This shows if the authenticated entity has access to read the details of the user or not. If true, then the 'anonymizedUserName' should be retrieved.</div>
          - `anonymizedUserName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Retrieved if the authenticated entity does not have access to read the User.</div>
          - `account` Account
            - `id` string, required — The account identifier.
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The account name.</div>
          - `location` FolderV2 — Folder used for resource storage.
            - `id` string, required — The folder identifier.
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The name of the folder.</div>
            - `hasParent` boolean, nullable — Indicates if the folder has a parent folder.
            - `path` FolderPath[] — The hierarchical path. It consists of all the items of the path in reverse order, the parent of the current folder being the first in the list, and the root of the account being the last.
              - …
          - `groups` Group[]
          - `userType` 'user' | 'serviceUser' — The type of the account user.
          - `status` 'inactive' | 'active' | 'deleted' | 'provisioned' — Status of this account user.
          - `invitationLink` string — The user's invitation link. Retrieved only for RWS ID (formerly SDL ID) users—not service users. It is available only if the user has not yet accepted the invitation (status is `inactive`).
          - `membership` 'member' | 'collaborator' — Type of membership of this account user.
          - `metadata` unknown
        - `roles` Role[] — **Note**: The identifier of `Administrator` role will not be exposed publicly and a `********` placeholder will be returned on this endpoint for the role.
          - `id` string, required — The identifier of the role.
          - `type` 'provisioned' | 'custom', required — The role type.
          - `name` string, required — Name of the role.
          - `description` string — Description of the role.
          - `permissions` Permission[] — List of permissions associated with role.
            - `name` string, required — Name of the permission.
            - `description` string, required — Human-readable description of the permission.
            - `category` string, required — The category a permission belongs to.
            - `entityType` PermissionEntityType, required — The entity type a permission applies to.
              - …
            - `dependsOn` string[], required — List of permission names that this permission depends on. Empty array if no dependencies.
        - `additionalRoles` GroupAdditionalRoles[]
          - `location` FolderV2, required — Folder used for resource storage.
            - `id` string, required — The folder identifier.
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The name of the folder.</div>
            - `hasParent` boolean, nullable — Indicates if the folder has a parent folder.
            - `path` FolderPath[] — The hierarchical path. It consists of all the items of the path in reverse order, the parent of the current folder being the first in the list, and the root of the account being the last.
              - …
          - `roles` Role[], required
            - `id` string, required — The identifier of the role.
            - `type` 'provisioned' | 'custom', required — The role type.
            - `name` string, required — Name of the role.
            - `description` string — Description of the role.
            - `permissions` Permission[] — List of permissions associated with role.
              - …
        - `groupType` 'default' | 'custom' | 'vendor' | 'customer' — - default : groups in the Root folder (location) provisioned by the system, automatically. Examples: Administrator, Project Manager, Engineer, Terminologist. - customer : groups provisioned by the system, automatically, for each customer location you add. Examples: Customer Requester, Customer Reviewer. - vendor : group provisioned by the system, automatically, for each vendor location you add. Examples: Vendor Project Manager. - custom : groups you can create in a location of your choice. Examples: Project Manager, Translator.
        - `metadata` unknown
      - `id` string — User account identifier.
      - `description` string — Description of this account user. For Service account users only.
      - `email` string — <div style="display:inline; float:right; color:#008080; margin-top:-10px; font-size:11px">default</div><div style="display: inline;">The user's email address. Retrieved only for RWS ID (formerly SDL ID) users (not service users) that the authenticated entity is authorized to read.</div>
      - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-10px; font-size:11px">default</div><div style="display: inline;">The user's name. Retrieved only for Service users (not RWS ID users) that the authenticated entity is authorized to read.</div>
      - `firstName` string — <div style="display:inline; float:right; color:#008080; margin-top:-10px; font-size:11px">default</div><div style="display: inline;">The user's first name. Retrieved only for RWS ID (formerly SDL ID) users (not service users) that the authenticated entity is authorized to read.</div>
      - `lastName` string — <div style="display:inline; float:right; color:#008080; margin-top:-10px; font-size:11px">default</div><div style="display: inline;">The user's last name. Retrieved only for RWS ID (formerly SDL ID) users (not service users) that the authenticated entity is authorized to read.</div>
      - `anonymized` boolean — <div style="display:inline; float:right; color:#008080; margin-top:-10px; font-size:11px">default</div><div style="display: inline;">This shows if the authenticated entity has access to read the details of the user or not. If true, then the 'anonymizedUserName' should be retrieved.</div>
      - `anonymizedUserName` string — <div style="display:inline; float:right; color:#008080; margin-top:-10px; font-size:11px">default</div><div style="display: inline;">Retrieved if the authenticated entity does not have access to read the User.</div>
      - `account` Account
        - `id` string, required — The account identifier.
        - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The account name.</div>
      - `location` FolderV2 — Folder used for resource storage.
        - `id` string, required — The folder identifier.
        - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The name of the folder.</div>
        - `hasParent` boolean, nullable — Indicates if the folder has a parent folder.
        - `path` FolderPath[] — The hierarchical path. It consists of all the items of the path in reverse order, the parent of the current folder being the first in the list, and the root of the account being the last.
          - `id` string, required — The folder identifier.
          - `name` string, required — The name of the folder.
          - `location` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div>The location identifier.
          - `hasParent` boolean, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div>Indicates if the folder has a parent folder.
      - `groups` Group[]
        - `id` string, required — The group identifier.
        - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The group name.</div>
        - `description` string — The group description.
        - `location` FolderV2 — Folder used for resource storage.
          - `id` string, required — The folder identifier.
          - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The name of the folder.</div>
          - `hasParent` boolean, nullable — Indicates if the folder has a parent folder.
          - `path` FolderPath[] — The hierarchical path. It consists of all the items of the path in reverse order, the parent of the current folder being the first in the list, and the root of the account being the last.
            - `id` string, required — The folder identifier.
            - `name` string, required — The name of the folder.
            - `location` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div>The location identifier.
            - `hasParent` boolean, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div>Indicates if the folder has a parent folder.
        - `users` User[]
          - `id` string, required — User account identifier.
          - `description` string — Description of this account user. For Service account users only.
          - `email` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's email address. Retrieved only for RWS ID (formerly SDL ID) users (not service users) that the authenticated entity is authorized to read.</div>
          - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's name. Retrieved only for Service users (not RWS ID users) that the authenticated entity is authorized to read.</div>
          - `firstName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's first name. Retrieved only for RWS ID (formerly SDL ID) users (not service users) that the authenticated entity is authorized to read.</div>
          - `lastName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's last name. Retrieved only for RWS ID (formerly SDL ID) users (not service users) that the authenticated entity is authorized to read.</div>
          - `anonymized` boolean, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">This shows if the authenticated entity has access to read the details of the user or not. If true, then the 'anonymizedUserName' should be retrieved.</div>
          - `anonymizedUserName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Retrieved if the authenticated entity does not have access to read the User.</div>
          - `account` Account
            - `id` string, required — The account identifier.
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The account name.</div>
          - `location` FolderV2 — Folder used for resource storage.
            - `id` string, required — The folder identifier.
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The name of the folder.</div>
            - `hasParent` boolean, nullable — Indicates if the folder has a parent folder.
            - `path` FolderPath[] — The hierarchical path. It consists of all the items of the path in reverse order, the parent of the current folder being the first in the list, and the root of the account being the last.
              - …
          - `groups` Group[]
          - `userType` 'user' | 'serviceUser' — The type of the account user.
          - `status` 'inactive' | 'active' | 'deleted' | 'provisioned' — Status of this account user.
          - `invitationLink` string — The user's invitation link. Retrieved only for RWS ID (formerly SDL ID) users—not service users. It is available only if the user has not yet accepted the invitation (status is `inactive`).
          - `membership` 'member' | 'collaborator' — Type of membership of this account user.
          - `metadata` unknown
        - `roles` Role[] — **Note**: The identifier of `Administrator` role will not be exposed publicly and a `********` placeholder will be returned on this endpoint for the role.
          - `id` string, required — The identifier of the role.
          - `type` 'provisioned' | 'custom', required — The role type.
          - `name` string, required — Name of the role.
          - `description` string — Description of the role.
          - `permissions` Permission[] — List of permissions associated with role.
            - `name` string, required — Name of the permission.
            - `description` string, required — Human-readable description of the permission.
            - `category` string, required — The category a permission belongs to.
            - `entityType` PermissionEntityType, required — The entity type a permission applies to.
              - …
            - `dependsOn` string[], required — List of permission names that this permission depends on. Empty array if no dependencies.
        - `additionalRoles` GroupAdditionalRoles[]
          - `location` FolderV2, required — Folder used for resource storage.
            - `id` string, required — The folder identifier.
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The name of the folder.</div>
            - `hasParent` boolean, nullable — Indicates if the folder has a parent folder.
            - `path` FolderPath[] — The hierarchical path. It consists of all the items of the path in reverse order, the parent of the current folder being the first in the list, and the root of the account being the last.
              - …
          - `roles` Role[], required
            - `id` string, required — The identifier of the role.
            - `type` 'provisioned' | 'custom', required — The role type.
            - `name` string, required — Name of the role.
            - `description` string — Description of the role.
            - `permissions` Permission[] — List of permissions associated with role.
              - …
        - `groupType` 'default' | 'custom' | 'vendor' | 'customer' — - default : groups in the Root folder (location) provisioned by the system, automatically. Examples: Administrator, Project Manager, Engineer, Terminologist. - customer : groups provisioned by the system, automatically, for each customer location you add. Examples: Customer Requester, Customer Reviewer. - vendor : group provisioned by the system, automatically, for each vendor location you add. Examples: Vendor Project Manager. - custom : groups you can create in a location of your choice. Examples: Project Manager, Translator.
        - `metadata` unknown
      - `userType` 'user' | 'serviceUser' — The type of the account user.
      - `status` 'inactive' | 'active' | 'deleted' | 'provisioned' — Status of this account user.
      - `invitationLink` string — The user's invitation link. Retrieved only for RWS ID (formerly SDL ID) users—not service users. It is available only if the user has not yet accepted the invitation (status is `inactive`).
      - `membership` 'member' | 'collaborator' — Type of membership of this account user.
    - `assignees` TaskAssignee[]
      - `type` 'user' | 'group' | 'vendorOrderTemplate' | 'projectCreator', required — Type "projectCreator" - reserved for future use. Should be able to handle it and ignore it if received.
      - `user` User — User in the account.
        - `id` string, required — User account identifier.
        - `description` string — Description of this account user. For Service account users only.
        - `email` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's email address. Retrieved only for RWS ID (formerly SDL ID) users (not service users) that the authenticated entity is authorized to read.</div>
        - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's name. Retrieved only for Service users (not RWS ID users) that the authenticated entity is authorized to read.</div>
        - `firstName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's first name. Retrieved only for RWS ID (formerly SDL ID) users (not service users) that the authenticated entity is authorized to read.</div>
        - `lastName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's last name. Retrieved only for RWS ID (formerly SDL ID) users (not service users) that the authenticated entity is authorized to read.</div>
        - `anonymized` boolean, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">This shows if the authenticated entity has access to read the details of the user or not. If true, then the 'anonymizedUserName' should be retrieved.</div>
        - `anonymizedUserName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Retrieved if the authenticated entity does not have access to read the User.</div>
        - `account` Account
          - `id` string, required — The account identifier.
          - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The account name.</div>
        - `location` FolderV2 — Folder used for resource storage.
          - `id` string, required — The folder identifier.
          - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The name of the folder.</div>
          - `hasParent` boolean, nullable — Indicates if the folder has a parent folder.
          - `path` FolderPath[] — The hierarchical path. It consists of all the items of the path in reverse order, the parent of the current folder being the first in the list, and the root of the account being the last.
            - `id` string, required — The folder identifier.
            - `name` string, required — The name of the folder.
            - `location` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div>The location identifier.
            - `hasParent` boolean, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div>Indicates if the folder has a parent folder.
        - `groups` Group[]
          - `id` string, required — The group identifier.
          - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The group name.</div>
          - `description` string — The group description.
          - `location` FolderV2 — Folder used for resource storage.
            - `id` string, required — The folder identifier.
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The name of the folder.</div>
            - `hasParent` boolean, nullable — Indicates if the folder has a parent folder.
            - `path` FolderPath[] — The hierarchical path. It consists of all the items of the path in reverse order, the parent of the current folder being the first in the list, and the root of the account being the last.
              - …
          - `users` User[]
          - `roles` Role[] — **Note**: The identifier of `Administrator` role will not be exposed publicly and a `********` placeholder will be returned on this endpoint for the role.
            - `id` string, required — The identifier of the role.
            - `type` 'provisioned' | 'custom', required — The role type.
            - `name` string, required — Name of the role.
            - `description` string — Description of the role.
            - `permissions` Permission[] — List of permissions associated with role.
              - …
          - `additionalRoles` GroupAdditionalRoles[]
            - `location` FolderV2, required — Folder used for resource storage.
              - …
            - `roles` Role[], required
              - …
          - `groupType` 'default' | 'custom' | 'vendor' | 'customer' — - default : groups in the Root folder (location) provisioned by the system, automatically. Examples: Administrator, Project Manager, Engineer, Terminologist. - customer : groups provisioned by the system, automatically, for each customer location you add. Examples: Customer Requester, Customer Reviewer. - vendor : group provisioned by the system, automatically, for each vendor location you add. Examples: Vendor Project Manager. - custom : groups you can create in a location of your choice. Examples: Project Manager, Translator.
          - `metadata` unknown
        - `userType` 'user' | 'serviceUser' — The type of the account user.
        - `status` 'inactive' | 'active' | 'deleted' | 'provisioned' — Status of this account user.
        - `invitationLink` string — The user's invitation link. Retrieved only for RWS ID (formerly SDL ID) users—not service users. It is available only if the user has not yet accepted the invitation (status is `inactive`).
        - `membership` 'member' | 'collaborator' — Type of membership of this account user.
        - `metadata` unknown
      - `group` Group — Group of Users.
        - `id` string, required — The group identifier.
        - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The group name.</div>
        - `description` string — The group description.
        - `location` FolderV2 — Folder used for resource storage.
          - `id` string, required — The folder identifier.
          - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The name of the folder.</div>
          - `hasParent` boolean, nullable — Indicates if the folder has a parent folder.
          - `path` FolderPath[] — The hierarchical path. It consists of all the items of the path in reverse order, the parent of the current folder being the first in the list, and the root of the account being the last.
            - `id` string, required — The folder identifier.
            - `name` string, required — The name of the folder.
            - `location` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div>The location identifier.
            - `hasParent` boolean, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div>Indicates if the folder has a parent folder.
        - `users` User[]
          - `id` string, required — User account identifier.
          - `description` string — Description of this account user. For Service account users only.
          - `email` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's email address. Retrieved only for RWS ID (formerly SDL ID) users (not service users) that the authenticated entity is authorized to read.</div>
          - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's name. Retrieved only for Service users (not RWS ID users) that the authenticated entity is authorized to read.</div>
          - `firstName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's first name. Retrieved only for RWS ID (formerly SDL ID) users (not service users) that the authenticated entity is authorized to read.</div>
          - `lastName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's last name. Retrieved only for RWS ID (formerly SDL ID) users (not service users) that the authenticated entity is authorized to read.</div>
          - `anonymized` boolean, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">This shows if the authenticated entity has access to read the details of the user or not. If true, then the 'anonymizedUserName' should be retrieved.</div>
          - `anonymizedUserName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Retrieved if the authenticated entity does not have access to read the User.</div>
          - `account` Account
            - `id` string, required — The account identifier.
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The account name.</div>
          - `location` FolderV2 — Folder used for resource storage.
            - `id` string, required — The folder identifier.
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The name of the folder.</div>
            - `hasParent` boolean, nullable — Indicates if the folder has a parent folder.
            - `path` FolderPath[] — The hierarchical path. It consists of all the items of the path in reverse order, the parent of the current folder being the first in the list, and the root of the account being the last.
              - …
          - `groups` Group[]
          - `userType` 'user' | 'serviceUser' — The type of the account user.
          - `status` 'inactive' | 'active' | 'deleted' | 'provisioned' — Status of this account user.
          - `invitationLink` string — The user's invitation link. Retrieved only for RWS ID (formerly SDL ID) users—not service users. It is available only if the user has not yet accepted the invitation (status is `inactive`).
          - `membership` 'member' | 'collaborator' — Type of membership of this account user.
          - `metadata` unknown
        - `roles` Role[] — **Note**: The identifier of `Administrator` role will not be exposed publicly and a `********` placeholder will be returned on this endpoint for the role.
          - `id` string, required — The identifier of the role.
          - `type` 'provisioned' | 'custom', required — The role type.
          - `name` string, required — Name of the role.
          - `description` string — Description of the role.
          - `permissions` Permission[] — List of permissions associated with role.
            - `name` string, required — Name of the permission.
            - `description` string, required — Human-readable description of the permission.
            - `category` string, required — The category a permission belongs to.
            - `entityType` PermissionEntityType, required — The entity type a permission applies to.
              - …
            - `dependsOn` string[], required — List of permission names that this permission depends on. Empty array if no dependencies.
        - `additionalRoles` GroupAdditionalRoles[]
          - `location` FolderV2, required — Folder used for resource storage.
            - `id` string, required — The folder identifier.
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The name of the folder.</div>
            - `hasParent` boolean, nullable — Indicates if the folder has a parent folder.
            - `path` FolderPath[] — The hierarchical path. It consists of all the items of the path in reverse order, the parent of the current folder being the first in the list, and the root of the account being the last.
              - …
          - `roles` Role[], required
            - `id` string, required — The identifier of the role.
            - `type` 'provisioned' | 'custom', required — The role type.
            - `name` string, required — Name of the role.
            - `description` string — Description of the role.
            - `permissions` Permission[] — List of permissions associated with role.
              - …
        - `groupType` 'default' | 'custom' | 'vendor' | 'customer' — - default : groups in the Root folder (location) provisioned by the system, automatically. Examples: Administrator, Project Manager, Engineer, Terminologist. - customer : groups provisioned by the system, automatically, for each customer location you add. Examples: Customer Requester, Customer Reviewer. - vendor : group provisioned by the system, automatically, for each vendor location you add. Examples: Vendor Project Manager. - custom : groups you can create in a location of your choice. Examples: Project Manager, Translator.
        - `metadata` unknown
      - `vendorOrderTemplate` VendorOrderTemplate — The vendor order template.
        - `id` string, required
    - `dueBy` string, date-time, nullable — The task due date. <br> UTC Timezone <br> Allowed formats: <br> "YYYY-MM-DDThh:mmZ" <br> "YYYY-MM-DDThh:mm:ssZ" <br> "YYYY-MM-DDThh:mm:ss.sZ" <br> "YYYY-MM-DDThh:mm:ss.ssZ" <br> "YYYY-MM-DDThh:mm:ss.sssZ"
    - `createdAt` string, date-time, nullable — The date and time when the task was created. <br> Allowed formats: <br> "YYYY-MM-DDThh:mmZ" <br> "YYYY-MM-DDThh:mm:ssZ" <br> "YYYY-MM-DDThh:mm:ss.sZ" <br> "YYYY-MM-DDThh:mm:ss.ssZ" <br> "YYYY-MM-DDThh:mm:ss.sssZ"
    - `applicableOutcomes` TaskOutcome[]
      - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;"></div> Outcome to be used with complete endpoint.
      - `description` string — A human-friendly form of the outcome.
      - `default` boolean — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;"></div> Specifies if the outcome is the default one for the task.
    - `outcome` string — The outcome of the task type. It is retrieved only if the task is completed. It should match one of the legal outcomes in the task type.
    - `comment` string — The comment associated with this task at completion.
    - `project` Project — Project resource.
      - `id` string, required — The project identifier.
      - `shortId` string — The short identifier of the project.
      - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The project name.</div>
      - `description` string — The project description.
      - `dueBy` string, date-time, nullable — The project due date. <br> UTC Timezone <br> Allowed formats: <br> "YYYY-MM-DDThh:mmZ" <br> "YYYY-MM-DDThh:mm:ssZ" <br> "YYYY-MM-DDThh:mm:ss.sZ" <br> "YYYY-MM-DDThh:mm:ss.ssZ" <br> "YYYY-MM-DDThh:mm:ss.sssZ"
      - `deliveredBy` string, date-time, nullable — UTC Timezone <br> Allowed formats: <br> "YYYY-MM-DDThh:mmZ" <br> "YYYY-MM-DDThh:mm:ssZ" <br> "YYYY-MM-DDThh:mm:ss.sZ" <br> "YYYY-MM-DDThh:mm:ss.ssZ" <br> "YYYY-MM-DDThh:mm:ss.sssZ"
      - `createdAt` string, date-time, nullable — The project's creation date and time. <br> UTC Timezone <br> Allowed formats: <br> "YYYY-MM-DDThh:mmZ" <br> "YYYY-MM-DDThh:mm:ssZ" <br> "YYYY-MM-DDThh:mm:ss.sZ" <br> "YYYY-MM-DDThh:mm:ss.ssZ" <br> "YYYY-MM-DDThh:mm:ss.sssZ"
      - `status` 'created' | 'inProgress' | 'completed' | 'archived', nullable — The project's status.
      - `statusHistory` ProjectStatusHistory[], nullable — The project's status history.
        - `from` 'none' | 'created' | 'inProgress' | 'completed', required — Specifies the project status previous to the change.
        - `to` 'created' | 'inProgress' | 'completed', required — Specifies the project status post change.
        - `by` User — User in the account.
          - `id` string, required — User account identifier.
          - `description` string — Description of this account user. For Service account users only.
          - `email` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's email address. Retrieved only for RWS ID (formerly SDL ID) users (not service users) that the authenticated entity is authorized to read.</div>
          - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's name. Retrieved only for Service users (not RWS ID users) that the authenticated entity is authorized to read.</div>
          - `firstName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's first name. Retrieved only for RWS ID (formerly SDL ID) users (not service users) that the authenticated entity is authorized to read.</div>
          - `lastName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's last name. Retrieved only for RWS ID (formerly SDL ID) users (not service users) that the authenticated entity is authorized to read.</div>
          - `anonymized` boolean, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">This shows if the authenticated entity has access to read the details of the user or not. If true, then the 'anonymizedUserName' should be retrieved.</div>
          - `anonymizedUserName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Retrieved if the authenticated entity does not have access to read the User.</div>
          - `account` Account
            - `id` string, required — The account identifier.
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The account name.</div>
          - `location` FolderV2 — Folder used for resource storage.
            - `id` string, required — The folder identifier.
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The name of the folder.</div>
            - `hasParent` boolean, nullable — Indicates if the folder has a parent folder.
            - `path` FolderPath[] — The hierarchical path. It consists of all the items of the path in reverse order, the parent of the current folder being the first in the list, and the root of the account being the last.
              - …
          - `groups` Group[]
            - `id` string, required — The group identifier.
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The group name.</div>
            - `description` string — The group description.
            - `location` FolderV2 — Folder used for resource storage.
              - …
            - `users` User[]
            - `roles` Role[] — **Note**: The identifier of `Administrator` role will not be exposed publicly and a `********` placeholder will be returned on this endpoint for the role.
              - …
            - `additionalRoles` GroupAdditionalRoles[]
              - …
            - `groupType` 'default' | 'custom' | 'vendor' | 'customer' — - default : groups in the Root folder (location) provisioned by the system, automatically. Examples: Administrator, Project Manager, Engineer, Terminologist. - customer : groups provisioned by the system, automatically, for each customer location you add. Examples: Customer Requester, Customer Reviewer. - vendor : group provisioned by the system, automatically, for each vendor location you add. Examples: Vendor Project Manager. - custom : groups you can create in a location of your choice. Examples: Project Manager, Translator.
            - `metadata` unknown
          - `userType` 'user' | 'serviceUser' — The type of the account user.
          - `status` 'inactive' | 'active' | 'deleted' | 'provisioned' — Status of this account user.
          - `invitationLink` string — The user's invitation link. Retrieved only for RWS ID (formerly SDL ID) users—not service users. It is available only if the user has not yet accepted the invitation (status is `inactive`).
          - `membership` 'member' | 'collaborator' — Type of membership of this account user.
          - `metadata` unknown
        - `timestamp` string, date-time, nullable — UTC Timezone <br> Allowed formats: <br> "YYYY-MM-DDThh:mmZ" <br> "YYYY-MM-DDThh:mm:ssZ" <br> "YYYY-MM-DDThh:mm:ss.sZ" <br> "YYYY-MM-DDThh:mm:ss.ssZ" <br> "YYYY-MM-DDThh:mm:ss.sssZ"
      - `languageDirections` LanguageDirection[] — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The project's language directions.</div>
        - `id` string, required — The language direction identifier.
        - `sourceLanguage` Language, required — The language object.
          - `languageCode` string, required — Language code. ex: "en-US", "de-DE".
          - `englishName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Human readable name.</div>
          - `direction` string
          - `parentLanguageCode` string
          - `defaultSpecificLanguageCode` string
          - `isNeutral` boolean, nullable
        - `targetLanguage` Language, required — The language object.
          - `languageCode` string, required — Language code. ex: "en-US", "de-DE".
          - `englishName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Human readable name.</div>
          - `direction` string
          - `parentLanguageCode` string
          - `defaultSpecificLanguageCode` string
          - `isNeutral` boolean, nullable
        - `analysisStatistics` AnalysisStatistics
          - `exactMatch` Count — Statistics count.
            - `words` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of words.</div>
            - `segments` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of segments.</div>
            - `characters` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of characters.</div>
            - `placeables` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of placeables.</div>
            - `tags` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of tags.</div>
          - `inContextExactMatch` Count — Statistics count.
            - `words` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of words.</div>
            - `segments` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of segments.</div>
            - `characters` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of characters.</div>
            - `placeables` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of placeables.</div>
            - `tags` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of tags.</div>
          - `perfectMatch` Count — Statistics count.
            - `words` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of words.</div>
            - `segments` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of segments.</div>
            - `characters` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of characters.</div>
            - `placeables` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of placeables.</div>
            - `tags` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of tags.</div>
          - `new` Count — Statistics count.
            - `words` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of words.</div>
            - `segments` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of segments.</div>
            - `characters` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of characters.</div>
            - `placeables` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of placeables.</div>
            - `tags` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of tags.</div>
          - `repetitions` Count — Statistics count.
            - `words` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of words.</div>
            - `segments` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of segments.</div>
            - `characters` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of characters.</div>
            - `placeables` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of placeables.</div>
            - `tags` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of tags.</div>
          - `crossDocumentRepetitions` Count — Statistics count.
            - `words` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of words.</div>
            - `segments` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of segments.</div>
            - `characters` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of characters.</div>
            - `placeables` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of placeables.</div>
            - `tags` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of tags.</div>
          - `machineTranslation` Count — Statistics count.
            - `words` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of words.</div>
            - `segments` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of segments.</div>
            - `characters` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of characters.</div>
            - `placeables` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of placeables.</div>
            - `tags` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of tags.</div>
          - `locked` Count — Statistics count.
            - `words` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of words.</div>
            - `segments` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of segments.</div>
            - `characters` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of characters.</div>
            - `placeables` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of placeables.</div>
            - `tags` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of tags.</div>
          - `fuzzyMatch` FuzzyCount[] — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Statistics count.</div>
            - `count` Count — Statistics count.
              - …
            - `category` FuzzyCategory — Fuzzy category range. Example of Fuzzy bands: 100-100%, 95-99%, 85-94%, 75-84%, 50-74%.
              - …
          - `total` Count — Statistics count.
            - `words` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of words.</div>
            - `segments` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of segments.</div>
            - `characters` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of characters.</div>
            - `placeables` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of placeables.</div>
            - `tags` integer, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Number of tags.</div>
      - `customer` Customer — Customer resource.
        - `id` string, required — Customer identifier.
        - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Customer name.</div>
        - `keyContact` User — User in the account.
          - `id` string, required — User account identifier.
          - `description` string — Description of this account user. For Service account users only.
          - `email` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's email address. Retrieved only for RWS ID (formerly SDL ID) users (not service users) that the authenticated entity is authorized to read.</div>
          - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's name. Retrieved only for Service users (not RWS ID users) that the authenticated entity is authorized to read.</div>
          - `firstName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's first name. Retrieved only for RWS ID (formerly SDL ID) users (not service users) that the authenticated entity is authorized to read.</div>
          - `lastName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's last name. Retrieved only for RWS ID (formerly SDL ID) users (not service users) that the authenticated entity is authorized to read.</div>
          - `anonymized` boolean, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">This shows if the authenticated entity has access to read the details of the user or not. If true, then the 'anonymizedUserName' should be retrieved.</div>
          - `anonymizedUserName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Retrieved if the authenticated entity does not have access to read the User.</div>
          - `account` Account
            - `id` string, required — The account identifier.
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The account name.</div>
          - `location` FolderV2 — Folder used for resource storage.
            - `id` string, required — The folder identifier.
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The name of the folder.</div>
            - `hasParent` boolean, nullable — Indicates if the folder has a parent folder.
            - `path` FolderPath[] — The hierarchical path. It consists of all the items of the path in reverse order, the parent of the current folder being the first in the list, and the root of the account being the last.
              - …
          - `groups` Group[]
            - `id` string, required — The group identifier.
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The group name.</div>
            - `description` string — The group description.
            - `location` FolderV2 — Folder used for resource storage.
              - …
            - `users` User[]
            - `roles` Role[] — **Note**: The identifier of `Administrator` role will not be exposed publicly and a `********` placeholder will be returned on this endpoint for the role.
              - …
            - `additionalRoles` GroupAdditionalRoles[]
              - …
            - `groupType` 'default' | 'custom' | 'vendor' | 'customer' — - default : groups in the Root folder (location) provisioned by the system, automatically. Examples: Administrator, Project Manager, Engineer, Terminologist. - customer : groups provisioned by the system, automatically, for each customer location you add. Examples: Customer Requester, Customer Reviewer. - vendor : group provisioned by the system, automatically, for each vendor location you add. Examples: Vendor Project Manager. - custom : groups you can create in a location of your choice. Examples: Project Manager, Translator.
            - `metadata` unknown
          - `userType` 'user' | 'serviceUser' — The type of the account user.
          - `status` 'inactive' | 'active' | 'deleted' | 'provisioned' — Status of this account user.
          - `invitationLink` string — The user's invitation link. Retrieved only for RWS ID (formerly SDL ID) users—not service users. It is available only if the user has not yet accepted the invitation (status is `inactive`).
          - `membership` 'member' | 'collaborator' — Type of membership of this account user.
          - `metadata` unknown
        - `location` FolderV2 — Folder used for resource storage.
          - `id` string, required — The folder identifier.
          - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The name of the folder.</div>
          - `hasParent` boolean, nullable — Indicates if the folder has a parent folder.
          - `path` FolderPath[] — The hierarchical path. It consists of all the items of the path in reverse order, the parent of the current folder being the first in the list, and the root of the account being the last.
            - `id` string, required — The folder identifier.
            - `name` string, required — The name of the folder.
            - `location` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div>The location identifier.
            - `hasParent` boolean, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div>Indicates if the folder has a parent folder.
        - `ragStatus` 'green' | 'amber' | 'red'
        - `customFieldDefinitions` CustomFieldResource[] — The custom field definitions.
          - `key` string, required — Custom Field friendly key.
          - `value` object, required — The value of the custom property. A date will be serialized as an ISO_8601 string.
      - `createdBy` User — User in the account.
        - `id` string, required — User account identifier.
        - `description` string — Description of this account user. For Service account users only.
        - `email` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's email address. Retrieved only for RWS ID (formerly SDL ID) users (not service users) that the authenticated entity is authorized to read.</div>
        - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's name. Retrieved only for Service users (not RWS ID users) that the authenticated entity is authorized to read.</div>
        - `firstName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's first name. Retrieved only for RWS ID (formerly SDL ID) users (not service users) that the authenticated entity is authorized to read.</div>
        - `lastName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The user's last name. Retrieved only for RWS ID (formerly SDL ID) users (not service users) that the authenticated entity is authorized to read.</div>
        - `anonymized` boolean, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">This shows if the authenticated entity has access to read the details of the user or not. If true, then the 'anonymizedUserName' should be retrieved.</div>
        - `anonymizedUserName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Retrieved if the authenticated entity does not have access to read the User.</div>
        - `account` Account
          - `id` string, required — The account identifier.
          - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The account name.</div>
        - `location` FolderV2 — Folder used for resource storage.
          - `id` string, required — The folder identifier.
          - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The name of the folder.</div>
          - `hasParent` boolean, nullable — Indicates if the folder has a parent folder.
          - `path` FolderPath[] — The hierarchical path. It consists of all the items of the path in reverse order, the parent of the current folder being the first in the list, and the root of the account being the last.
            - `id` string, required — The folder identifier.
            - `name` string, required — The name of the folder.
            - `location` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div>The location identifier.
            - `hasParent` boolean, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div>Indicates if the folder has a parent folder.
        - `groups` Group[]
          - `id` string, required — The group identifier.
          - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The group name.</div>
          - `description` string — The group description.
          - `location` FolderV2 — Folder used for resource storage.
            - `id` string, required — The folder identifier.
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The name of the folder.</div>
            - `hasParent` boolean, nullable — Indicates if the folder has a parent folder.
            - `path` FolderPath[] — The hierarchical path. It consists of all the items of the path in reverse order, the parent of the current folder being the first in the list, and the root of the account being the last.
              - …
          - `users` User[]
          - `roles` Role[] — **Note**: The identifier of `Administrator` role will not be exposed publicly and a `********` placeholder will be returned on this endpoint for the role.
            - `id` string, required — The identifier of the role.
            - `type` 'provisioned' | 'custom', required — The role type.
            - `name` string, required — Name of the role.
            - `description` string — Description of the role.
            - `permissions` Permission[] — List of permissions associated with role.
              - …
          - `additionalRoles` GroupAdditionalRoles[]
            - `location` FolderV2, required — Folder used for resource storage.
              - …
            - `roles` Role[], required
              - …
          - `groupType` 'default' | 'custom' | 'vendor' | 'customer' — - default : groups in the Root folder (location) provisioned by the system, automatically. Examples: Administrator, Project Manager, Engineer, Terminologist. - customer : groups provisioned by the system, automatically, for each customer location you add. Examples: Customer Requester, Customer Reviewer. - vendor : group provisioned by the system, automatically, for each vendor location you add. Examples: Vendor Project Manager. - custom : groups you can create in a location of your choice. Examples: Project Manager, Translator.
          - `metadata` unknown
        - `userType` 'user' | 'serviceUser' — The type of the account user.
        - `status` 'inactive' | 'active' | 'deleted' | 'provisioned' — Status of this account user.
        - `invitationLink` string — The user's invitation link. Retrieved only for RWS ID (formerly SDL ID) users—not service users. It is available only if the user has not yet accepted the invitation (status is `inactive`).
        - `membership` 'member' | 'collaborator' — Type of membership of this account user.
        - `metadata` unknown
      - `location` FolderV2 — Folder used for resource storage.
        - `id` string, required — The folder identifier.
        - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The name of the folder.</div>
        - `hasParent` boolean, nullable — Indicates if the folder has a parent folder.
        - `path` FolderPath[] — The hierarchical path. It consists of all the items of the path in reverse order, the parent of the current folder being the first in the list, and the root of the account being the last.
          - `id` string, required — The folder identifier.
          - `name` string, required — The name of the folder.
          - `location` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div>The location identifier.
          - `hasParent` boolean, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div>Indicates if the folder has a parent folder.
      - `projectTemplate` ProjectTemplateResponse — Project Template resource. (Not available for List Projects endpoint)
        - `id` string, required — The project template identifier.
        - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The project template name.</div>
        - `description` string — The project template description.
        - `languageDirections` LanguageDirectionNoStatistics[]
          - `id` string, required — The language direction identifier.
          - `sourceLanguage` Language, required — The language object.
            - `languageCode` string, required — Language code. ex: "en-US", "de-DE".
            - `englishName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Human readable name.</div>
            - `direction` string
            - `parentLanguageCode` string
            - `defaultSpecificLanguageCode` string
            - `isNeutral` boolean, nullable
          - `targetLanguage` Language, required — The language object.
            - `languageCode` string, required — Language code. ex: "en-US", "de-DE".
            - `englishName` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">Human readable name.</div>
            - `direction` string
            - `parentLanguageCode` string
            - `defaultSpecificLanguageCode` string
            - `isNeutral` boolean, nullable
        - `location` FolderV2 — Folder used for resource storage.
          - `id` string, required — The folder identifier.
          - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The name of the folder.</div>
          - `hasParent` boolean, nullable — Indicates if the folder has a parent folder.
          - `path` FolderPath[] — The hierarchical path. It consists of all the items of the path in reverse order, the parent of the current folder being the first in the list, and the root of the account being the last.
            - `id` string, required — The folder identifier.
            - `name` string, required — The name of the folder.
            - `location` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div>The location identifier.
            - `hasParent` boolean, nullable — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div>Indicates if the folder has a parent folder.
        - `translationEngine` TranslationEngine — Translation Engine resource. (Not available for List Projects endpoint)
          - `id` string, required — The translation engine identifier.
          - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The translation engine name.</div>
          - `description` string
          - `location` FolderV2 — Folder used for resource storage.
            - `id` string, required — The folder identifier.
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The name of the folder.</div>
            - `hasParent` boolean, nullable — Indicates if the folder has a parent folder.
            - `path` FolderPath[] — The hierarchical path. It consists of all the items of the path in reverse order, the parent of the current folder being the first in the list, and the root of the account being the last.
              - …
          - `definition` TranslationEngineDefinition — The definition of a translation engine.
            - `languageProcessingRuleId` string, required
            - `languagePairDefinitions` TranslationEngineDefinitionLanguagePair[]
              - …
            - `sequence` RemoteTranslationEngineSequence — Lists of IDs for Translation Memories, Termbases, Machine Translations and Large Language Models, in order of their use
              - …
            - `adjacentLanguagePenalty` integer
        - `fileProcessingConfiguration` FileProcessingConfiguration — File Processing Configuration resource. (Not available for List Projects endpoint)
          - `id` string, required — The file processing configuration identifier.
          - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The file processing configuration name.</div>
          - `location` FolderV2 — Folder used for resource storage.
            - `id` string, required — The folder identifier.
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The name of the folder.</div>
            - `hasParent` boolean, nullable — Indicates if the folder has a parent folder.
            - `path` FolderPath[] — The hierarchical path. It consists of all the items of the path in reverse order, the parent of the current folder being the first in the list, and the root of the account being the last.
              - …
        - `pricingModel` PricingModel — Pricing Model resource. (Not available for List Projects endpoint)
          - `id` string, required — The pricing model identifier.
          - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The name of the Pricing Model.</div>
          - `description` string — The description of the Pricing Model.
          - `currencyCode` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The currency code (ISO 4217).</div>
          - `location` FolderV2 — Folder used for resource storage.
            - `id` string, required — The folder identifier.
            - `name` string — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The name of the folder.</div>
            - `hasParent` boolean, nullable — Indicates if the folder has a parent folder.
            - `path` FolderPath[] — The hierarchical path. It consists of all the items of the path in reverse order, the parent of the current folder being the first in the list, and the root of the account being the last.
              - …
          - `languageDirectionPricing` LanguageDirectionCost[] — Costs applied for languages.
            - `sourceLanguage` string, required — The source language code. For example: "en-US", "de-DE".
            - `targetLanguage` string, required — The target language code. For example: "en-US", "de-DE".
            - `contextMatch` number — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The price of context matches.
            - `exactMatch` number — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;"> The price of exact matches.
            - `new` number — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The price of new matches.
            - `perfectMatch` number — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The price of PerfectMatches.
            - `repetition` number — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">The price of repetition matches.
            - `machineTranslation` number — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;"> The price of machine translation matches.
            - `pricingUnit` 'words' | 'characters'
            - `fuzzyMatches` FuzzyMatch[] — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">
              - …
            - `additionalCosts` LanguageCost[] — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div><div style="display: inline;">
              - …
          - `additionalCosts` ProjectCost[] — Additional costs applied at project level.
            - `name` string, required — The name of the additional cost.
            - `type` 'volume' | 'perTargetLanguage' | 'perFile' | 'hourly' | 'percentage' | 'perPage' | 'conditional' | 'adhoc' | 'adhocVolume', required
            - `index` number, required — The number of the additional cost.
            - `costPerUnit` number, required — The cost of a unit.
            - `unitCount` number, required — The number of units for which a cost is applied.
            - `volumeUnitType` 'words' | 'characters' | 'custom'
            - `conditionalCostType` 'absolute' | 'relative' | 'percentage'
            - `costOperator` 'less' | 'lessOrEqual' | 'greater' | 'greaterOrEqual'
            - `costVariable` 'wordCount' | 'runningTotal'
            - `operand` number — Operand of the Conditional type cost.
            - `serviceTypes` string[] — <div style="display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px">default</div> Array of Service Type identifiers where this additional cost is applied.
            - `customUnitName` string — The name of the custom unit.
- … truncated; see the full OpenAPI document linked below

## Other responses

- `401` — The user could not be identified.
- `416` — Error codes: * "requestedRangeNotSatisfiable": The requested entity or one of its dependencies attempted to retrieve data outside the allowed range. Skip+Top might be outside the supported range.

---

[API](https://skmtc.net/rws/apis/trados-cloud-platform-api.md) · [All operations](https://skmtc.net/rws/apis/trados-cloud-platform-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/rws/trados-cloud-platform-api/versions/d42dac7c28a3/schema)
